File size: 27,416 Bytes
ef14680 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 | [
{
"start_time": "36.588",
"stop_time": "39.668",
"speaker": "Ellie",
"value": "hi i'm ellie thanks for coming in today"
},
{
"start_time": "39.888",
"stop_time": "43.378",
"speaker": "Ellie",
"value": "i was created to talk to people in a safe and secure environment"
},
{
"start_time": "43.728",
"stop_time": "48.498",
"speaker": "Ellie",
"value": "think of me as a friend i don't judge i can't i'm a computer"
},
{
"start_time": "49.188",
"stop_time": "52.388",
"speaker": "Ellie",
"value": "i'm here to learn about people and would love to learn about you"
},
{
"start_time": "52.658",
"stop_time": "58.958",
"speaker": "Ellie",
"value": "i'll ask a few questions to get us started and please feel free to tell me anything your answers are totally confidential"
},
{
"start_time": "60.028",
"stop_time": "61.378",
"speaker": "Ellie",
"value": "how are you doing today"
},
{
"start_time": "62.328",
"stop_time": "63.178",
"speaker": "Participant",
"value": "good"
},
{
"start_time": "63.798",
"stop_time": "64.738",
"speaker": "Ellie",
"value": "that's good"
},
{
"start_time": "65.858",
"stop_time": "67.528",
"speaker": "Ellie",
"value": "where are you from originally"
},
{
"start_time": "68.978",
"stop_time": "70.288",
"speaker": "Participant",
"value": "atlanta georgia"
},
{
"start_time": "70.978",
"stop_time": "71.868",
"speaker": "Ellie",
"value": "really"
},
{
"start_time": "72.788",
"stop_time": "74.198",
"speaker": "Ellie",
"value": "why'd you move to l_a"
},
{
"start_time": "75.028",
"stop_time": "78.128",
"speaker": "Participant",
"value": "um my parents are from here um"
},
{
"start_time": "82.218",
"stop_time": "83.578",
"speaker": "Ellie",
"value": "how do you like l_a"
},
{
"start_time": "83.808",
"stop_time": "84.588",
"speaker": "Participant",
"value": "i love it"
},
{
"start_time": "85.558",
"stop_time": "87.898",
"speaker": "Ellie",
"value": "what are some things you really like about l_a"
},
{
"start_time": "88.458",
"stop_time": "89.968",
"speaker": "Participant",
"value": "i like the weather"
},
{
"start_time": "90.278",
"stop_time": "93.568",
"speaker": "Participant",
"value": "i like the opportunities"
},
{
"start_time": "94.738",
"stop_time": "95.298",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "96.588",
"stop_time": "97.278",
"speaker": "Participant",
"value": "yes"
},
{
"start_time": "98.228",
"stop_time": "100.868",
"speaker": "Ellie",
"value": "how easy was it for you to get used to living in l_a"
},
{
"start_time": "102.428",
"stop_time": "103.268",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "104.278",
"stop_time": "105.558",
"speaker": "Participant",
"value": "it took a minute"
},
{
"start_time": "107.738",
"stop_time": "108.798",
"speaker": "Participant",
"value": "somewhat easy"
},
{
"start_time": "110.788",
"stop_time": "113.168",
"speaker": "Ellie",
"value": "what are some things you don't really like about l_a"
},
{
"start_time": "114.038",
"stop_time": "115.558",
"speaker": "Participant",
"value": "congestion"
},
{
"start_time": "119.218",
"stop_time": "119.978",
"speaker": "Ellie",
"value": "mhm"
},
{
"start_time": "120.268",
"stop_time": "121.158",
"speaker": "Participant",
"value": "that's it"
},
{
"start_time": "122.828",
"stop_time": "123.768",
"speaker": "Ellie",
"value": "okay"
},
{
"start_time": "125.548",
"stop_time": "126.958",
"speaker": "Ellie",
"value": "what'd you study at school"
},
{
"start_time": "128.488",
"stop_time": "132.628",
"speaker": "Participant",
"value": "um i took up business and administration"
},
{
"start_time": "133.718",
"stop_time": "134.438",
"speaker": "Ellie",
"value": "cool"
},
{
"start_time": "134.818",
"stop_time": "136.178",
"speaker": "Ellie",
"value": "are you still doing that"
},
{
"start_time": "136.748",
"stop_time": "139.418",
"speaker": "Participant",
"value": "uh yeah i am"
},
{
"start_time": "139.868",
"stop_time": "144.548",
"speaker": "Participant",
"value": "here and there i'm on a break right now but i plan on going back in the uh next semester"
},
{
"start_time": "146.008",
"stop_time": "147.468",
"speaker": "Ellie",
"value": "what's your dream job"
},
{
"start_time": "149.258",
"stop_time": "152.168",
"speaker": "Participant",
"value": "uh probably to open up my own business"
},
{
"start_time": "155.698",
"stop_time": "156.678",
"speaker": "Ellie",
"value": "awesome"
},
{
"start_time": "159.448",
"stop_time": "160.858",
"speaker": "Ellie",
"value": "do you travel a lot"
},
{
"start_time": "161.248",
"stop_time": "162.068",
"speaker": "Participant",
"value": "no"
},
{
"start_time": "163.618",
"stop_time": "164.328",
"speaker": "Ellie",
"value": "why"
},
{
"start_time": "165.608",
"stop_time": "168.968",
"speaker": "Participant",
"value": "um no specific reason i just"
},
{
"start_time": "169.518",
"stop_time": "170.978",
"speaker": "Participant",
"value": "don't travel a lot"
},
{
"start_time": "171.308",
"stop_time": "172.978",
"speaker": "Participant",
"value": "i'm pretty local"
},
{
"start_time": "174.148",
"stop_time": "174.968",
"speaker": "Ellie",
"value": "okay"
},
{
"start_time": "175.558",
"stop_time": "177.668",
"speaker": "Ellie",
"value": "how often do you go back to your hometown"
},
{
"start_time": "178.578",
"stop_time": "179.918",
"speaker": "Participant",
"value": "once a year"
},
{
"start_time": "182.508",
"stop_time": "183.268",
"speaker": "Ellie",
"value": "nice"
},
{
"start_time": "184.998",
"stop_time": "186.858",
"speaker": "Ellie",
"value": "do you consider yourself an introvert"
},
{
"start_time": "189.098",
"stop_time": "191.068",
"speaker": "Participant",
"value": "can you be a little bit more specific"
},
{
"start_time": "193.678",
"stop_time": "195.248",
"speaker": "Ellie",
"value": "whatever comes to your mind"
},
{
"start_time": "196.868",
"stop_time": "197.998",
"speaker": "Participant",
"value": "no answer"
},
{
"start_time": "199.288",
"stop_time": "200.088",
"speaker": "Ellie",
"value": "okay"
},
{
"start_time": "200.818",
"stop_time": "202.398",
"speaker": "Ellie",
"value": " what do you do to relax"
},
{
"start_time": "203.318",
"stop_time": "206.358",
"speaker": "Participant",
"value": "i like reading books i enjoy i enjoy cooking"
},
{
"start_time": "206.728",
"stop_time": "208.658",
"speaker": "Participant",
"value": "um exercising is great"
},
{
"start_time": "211.648",
"stop_time": "212.618",
"speaker": "Ellie",
"value": "awesome"
},
{
"start_time": "213.878",
"stop_time": "216.068",
"speaker": "Ellie",
"value": "how are you at controlling your temper"
},
{
"start_time": "217.728",
"stop_time": "219.868",
"speaker": "Participant",
"value": "i'm i'm i'm pretty good at it"
},
{
"start_time": "220.228",
"stop_time": "221.058",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "221.358",
"stop_time": "222.068",
"speaker": "Ellie",
"value": "really"
},
{
"start_time": "221.358",
"stop_time": "222.068",
"speaker": "Participant",
"value": "yeah"
},
{
"start_time": "223.708",
"stop_time": "227.208",
"speaker": "Ellie",
"value": "when was the last time you argued with someone and what was it about"
},
{
"start_time": "227.998",
"stop_time": "230.118",
"speaker": "Participant",
"value": "um probably about"
},
{
"start_time": "231.088",
"stop_time": "232.368",
"speaker": "Participant",
"value": "two weeks ago"
},
{
"start_time": "235.458",
"stop_time": "237.378",
"speaker": "Ellie",
"value": "how did you feel in that moment"
},
{
"start_time": "238.298",
"stop_time": "240.168",
"speaker": "Participant",
"value": "uh frustrated"
},
{
"start_time": "242.218",
"stop_time": "243.518",
"speaker": "Ellie",
"value": "tell me more about that"
},
{
"start_time": "244.748",
"stop_time": "245.808",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "246.338",
"stop_time": "247.918",
"speaker": "Participant",
"value": "i don't like bias"
},
{
"start_time": "248.488",
"stop_time": "252.298",
"speaker": "Participant",
"value": "um i don't like um when someone says they're gonna do something and they don't"
},
{
"start_time": "252.938",
"stop_time": "253.678",
"speaker": "Ellie",
"value": "mhm"
},
{
"start_time": "257.578",
"stop_time": "258.848",
"speaker": "Ellie",
"value": "how close are you to them"
},
{
"start_time": "260.238",
"stop_time": "261.168",
"speaker": "Participant",
"value": "uh somewhat"
},
{
"start_time": "262.748",
"stop_time": "263.938",
"speaker": "Ellie",
"value": "how do you know them"
},
{
"start_time": "266.918",
"stop_time": "267.988",
"speaker": "Participant",
"value": "friendship"
},
{
"start_time": "269.898",
"stop_time": "270.658",
"speaker": "Ellie",
"value": "okay"
},
{
"start_time": "274.918",
"stop_time": "276.788",
"speaker": "Ellie",
"value": "what are some things you like to do for fun"
},
{
"start_time": "279.618",
"stop_time": "285.988",
"speaker": "Participant",
"value": "i like to play sports i enjoy uh going out with friends and family"
},
{
"start_time": "286.918",
"stop_time": "288.078",
"speaker": "Participant",
"value": "playing games"
},
{
"start_time": "288.858",
"stop_time": "289.678",
"speaker": "Ellie",
"value": "nice"
},
{
"start_time": "290.868",
"stop_time": "293.268",
"speaker": "Ellie",
"value": "who's someone that's been a positive influence in your life"
},
{
"start_time": "294.678",
"stop_time": "295.778",
"speaker": "Participant",
"value": "grandparents"
},
{
"start_time": "296.648",
"stop_time": "297.618",
"speaker": "Participant",
"value": "parents"
},
{
"start_time": "298.928",
"stop_time": "299.668",
"speaker": "Ellie",
"value": "aww"
},
{
"start_time": "302.228",
"stop_time": "303.498",
"speaker": "Ellie",
"value": "can you tell me about that"
},
{
"start_time": "305.218",
"stop_time": "309.358",
"speaker": "Participant",
"value": "um yeah i mean they've always given me great advice"
},
{
"start_time": "310.538",
"stop_time": "312.208",
"speaker": "Participant",
"value": "they've always kept it real"
},
{
"start_time": "314.148",
"stop_time": "316.388",
"speaker": "Ellie",
"value": "how close are you to your family"
},
{
"start_time": "316.868",
"stop_time": "318.008",
"speaker": "Participant",
"value": "real close"
},
{
"start_time": "322.918",
"stop_time": "324.388",
"speaker": "Ellie",
"value": "is there anything you regret"
},
{
"start_time": "325.738",
"stop_time": "333.468",
"speaker": "Participant",
"value": "i would say going to college right after high school"
},
{
"start_time": "334.268",
"stop_time": "335.058",
"speaker": "Ellie",
"value": "why"
},
{
"start_time": "336.988",
"stop_time": "339.728",
"speaker": "Participant",
"value": "well i would've been done by now you know"
},
{
"start_time": "340.568",
"stop_time": "344.168",
"speaker": "Participant",
"value": "i would have been probably out in the field"
},
{
"start_time": "344.788",
"stop_time": "346.068",
"speaker": "Participant",
"value": "in the career field"
},
{
"start_time": "347.178",
"stop_time": "348.808",
"speaker": "Ellie",
"value": "what made you decide to do that"
},
{
"start_time": "349.998",
"stop_time": "351.988",
"speaker": "Participant",
"value": "uh taking a job off the street"
},
{
"start_time": "354.178",
"stop_time": "356.448",
"speaker": "Ellie",
"value": "could you have done anything to avoid it"
},
{
"start_time": "357.818",
"stop_time": "360.198",
"speaker": "Participant",
"value": "i'm sure i could've yes"
},
{
"start_time": "363.928",
"stop_time": "366.448",
"speaker": "Ellie",
"value": "what's one of your most memorable experiences"
},
{
"start_time": "372.098",
"stop_time": "373.218",
"speaker": "Participant",
"value": "i'm not sure"
},
{
"start_time": "373.588",
"stop_time": "375.488",
"speaker": "Participant",
"value": "maybe when i graduated from high school"
},
{
"start_time": "377.588",
"stop_time": "378.288",
"speaker": "Ellie",
"value": "yeah"
},
{
"start_time": "381.848",
"stop_time": "383.678",
"speaker": "Ellie",
"value": "i'd love to hear all about it"
},
{
"start_time": "386.728",
"stop_time": "390.328",
"speaker": "Participant",
"value": "well uh i um i got my diploma"
},
{
"start_time": "390.748",
"stop_time": "395.448",
"speaker": "Participant",
"value": "my my diploma that i finished school and i met all the requirements "
},
{
"start_time": "396.628",
"stop_time": "397.708",
"speaker": "Participant",
"value": "high school"
},
{
"start_time": "398.588",
"stop_time": "399.988",
"speaker": "Participant",
"value": "and i was approved to go"
},
{
"start_time": "401.208",
"stop_time": "402.878",
"speaker": "Participant",
"value": "do whatever i wanted to do"
},
{
"start_time": "403.468",
"stop_time": "404.498",
"speaker": "Ellie",
"value": "that's great"
},
{
"start_time": "406.968",
"stop_time": "408.618",
"speaker": "Ellie",
"value": "what's it like for you living with them"
},
{
"start_time": "409.408",
"stop_time": "410.428",
"speaker": "Participant",
"value": "living with who"
},
{
"start_time": "411.438",
"stop_time": "413.158",
"speaker": "Ellie",
"value": "how do you like your living situation"
},
{
"start_time": "414.148",
"stop_time": "416.448",
"speaker": "Participant",
"value": "um it's alright it could be better"
},
{
"start_time": "417.418",
"stop_time": "418.688",
"speaker": "Ellie",
"value": "do you have roommates"
},
{
"start_time": "417.428",
"stop_time": "417.858",
"speaker": "Participant",
"value": "not"
},
{
"start_time": "419.038",
"stop_time": "419.508",
"speaker": "Participant",
"value": "no"
},
{
"start_time": "420.608",
"stop_time": "421.748",
"speaker": "Ellie",
"value": "that's good"
},
{
"start_time": "426.758",
"stop_time": "429.278",
"speaker": "Ellie",
"value": "how easy is it for you to get a good night's sleep"
},
{
"start_time": "430.858",
"stop_time": "432.458",
"speaker": "Participant",
"value": "uh it's pretty easy"
},
{
"start_time": "433.978",
"stop_time": "435.538",
"speaker": "Ellie",
"value": "do you feel that way often"
},
{
"start_time": "436.538",
"stop_time": "437.598",
"speaker": "Participant",
"value": "uh yes"
},
{
"start_time": "438.558",
"stop_time": "440.548",
"speaker": "Ellie",
"value": "what are you like when you don't sleep well"
},
{
"start_time": "448.468",
"stop_time": "449.568",
"speaker": "Participant",
"value": "repeat that"
},
{
"start_time": "450.498",
"stop_time": "452.478",
"speaker": "Ellie",
"value": "what are you like when you don't sleep well"
},
{
"start_time": "453.188",
"stop_time": "455.558",
"speaker": "Participant",
"value": "irritated um"
},
{
"start_time": "457.348",
"stop_time": "458.258",
"speaker": "Participant",
"value": "lazy"
},
{
"start_time": "462.288",
"stop_time": "463.488",
"speaker": "Ellie",
"value": "do you feel down"
},
{
"start_time": "463.868",
"stop_time": "464.468",
"speaker": "Participant",
"value": "no"
},
{
"start_time": "466.278",
"stop_time": "467.108",
"speaker": "Ellie",
"value": "that's good"
},
{
"start_time": "468.348",
"stop_time": "470.378",
"speaker": "Ellie",
"value": "have you been diagnosed with depression"
},
{
"start_time": "470.658",
"stop_time": "471.348",
"speaker": "Participant",
"value": "no"
},
{
"start_time": "471.878",
"stop_time": "474.188",
"speaker": "Ellie",
"value": "have you ever been diagnosed with p_t_s_d"
},
{
"start_time": "474.638",
"stop_time": "475.248",
"speaker": "Participant",
"value": "no"
},
{
"start_time": "475.948",
"stop_time": "477.648",
"speaker": "Ellie",
"value": "have you ever served in the military"
},
{
"start_time": "477.868",
"stop_time": "478.478",
"speaker": "Participant",
"value": "no"
},
{
"start_time": "479.228",
"stop_time": "480.088",
"speaker": "Ellie",
"value": "okay"
},
{
"start_time": "487.698",
"stop_time": "490.348",
"speaker": "Ellie",
"value": "when was the last time you felt really happy"
},
{
"start_time": "492.328",
"stop_time": "494.708",
"speaker": "Participant",
"value": "um the other day"
},
{
"start_time": "496.448",
"stop_time": "497.608",
"speaker": "Ellie",
"value": "tell me more about that"
},
{
"start_time": "499.508",
"stop_time": "502.038",
"speaker": "Participant",
"value": "weather was great sun was out"
},
{
"start_time": "503.878",
"stop_time": "505.988",
"speaker": "Ellie",
"value": "that sounds like a great situation"
},
{
"start_time": "507.578",
"stop_time": "509.258",
"speaker": "Ellie",
"value": "what do you think of today's kids"
},
{
"start_time": "511.028",
"stop_time": "511.888",
"speaker": "Participant",
"value": "different"
},
{
"start_time": "515.528",
"stop_time": "517.188",
"speaker": "Ellie",
"value": "can you give me an example of that"
},
{
"start_time": "525.478",
"stop_time": "526.528",
"speaker": "Participant",
"value": "less"
},
{
"start_time": "527.978",
"stop_time": "529.288",
"speaker": "Participant",
"value": "less um"
},
{
"start_time": "530.038",
"stop_time": "531.008",
"speaker": "Participant",
"value": "interested"
},
{
"start_time": "533.118",
"stop_time": "534.128",
"speaker": "Ellie",
"value": "[laughter]"
},
{
"start_time": "535.148",
"stop_time": "536.268",
"speaker": "Ellie",
"value": "i see what you mean"
},
{
"start_time": "544.928",
"stop_time": "546.488",
"speaker": "Ellie",
"value": "what do you do when you're annoyed"
},
{
"start_time": "548.568",
"stop_time": "550.018",
"speaker": "Participant",
"value": "uh shut down"
},
{
"start_time": "553.558",
"stop_time": "555.528",
"speaker": "Ellie",
"value": "when was the last time that happened"
},
{
"start_time": "559.768",
"stop_time": "562.228",
"speaker": "Participant",
"value": "uh about two weeks ago"
},
{
"start_time": "564.208",
"stop_time": "564.818",
"speaker": "Ellie",
"value": "mhm"
},
{
"start_time": "566.098",
"stop_time": "567.478",
"speaker": "Ellie",
"value": "can you tell me about that"
},
{
"start_time": "568.678",
"stop_time": "571.798",
"speaker": "Participant",
"value": "uh yeah a friend of mine was annoying me and i just"
},
{
"start_time": "572.458",
"stop_time": "573.568",
"speaker": "Participant",
"value": "cut them off"
},
{
"start_time": "574.868",
"stop_time": "576.008",
"speaker": "Ellie",
"value": "i'm sorry"
},
{
"start_time": "576.178",
"stop_time": "577.558",
"speaker": "Participant",
"value": "[laughter] it's alright"
},
{
"start_time": "579.098",
"stop_time": "580.348",
"speaker": "Ellie",
"value": "how do you know them"
},
{
"start_time": "581.178",
"stop_time": "582.128",
"speaker": "Participant",
"value": "friendship"
},
{
"start_time": "583.928",
"stop_time": "584.558",
"speaker": "Ellie",
"value": "cool"
},
{
"start_time": "589.148",
"stop_time": "590.918",
"speaker": "Ellie",
"value": "how would your best friend describe you"
},
{
"start_time": "598.238",
"stop_time": "599.708",
"speaker": "Participant",
"value": "chocolate"
},
{
"start_time": "600.608",
"stop_time": "601.378",
"speaker": "Participant",
"value": "tall"
},
{
"start_time": "601.718",
"stop_time": "602.688",
"speaker": "Ellie",
"value": "[laughter]"
},
{
"start_time": "602.738",
"stop_time": "603.478",
"speaker": "Participant",
"value": "thin"
},
{
"start_time": "610.398",
"stop_time": "611.098",
"speaker": "Ellie",
"value": "okay"
},
{
"start_time": "614.228",
"stop_time": "616.878",
"speaker": "Ellie",
"value": "okay i think i've asked everything i need to"
},
{
"start_time": "618.308",
"stop_time": "619.078",
"speaker": "Participant",
"value": "thank you"
},
{
"start_time": "619.488",
"stop_time": "620.348",
"speaker": "Ellie",
"value": "goodbye"
},
{
"start_time": "620.538",
"stop_time": "621.268",
"speaker": "Participant",
"value": "bye bye"
}
] |