def slurpfile(filename) -> str:
    with open(filename) as inf:
        return inf.read().strip()
host = "http://130.237.3.107:8080/api/"
api_token = slurpfile("label_studio_google")
input_dir = "/Users/joregan/Playing/hsi_google/"
import requests
import json
from pathlib import Path

headers = {
    "Authorization": f"Token {api_token}"
}
def get_projects():
    req = requests.get(f"{host}projects", headers=headers)
    assert req.status_code == 200
    data = json.loads(req.text)
    return data
def get_project_id_from_name(name):
    projects = get_projects()
    for res in projects["results"]:
        if res["title"].strip() == name.strip():
            return res["id"]
get_project_id_from_name("Main 5")
6
def get_tasks(projectid):
    req = requests.get(f"{host}tasks", headers=headers, params={"project": projectid})
    assert req.status_code == 200
    data = json.loads(req.text)
    return data
def index_task_filestem_to_id(tasks_data):
    tasks = tasks_data["tasks"]
    mapping = {}
    for task in tasks:
        task_id = task["id"]
        if "storage_filename" in task:
            task_raw_path = task["storage_filename"]
        else:
            task_raw_path = task["data"]["audio"]
        if not task_raw_path:
            continue
        task_stem = task_raw_path.split("/")[-1]
        mapping[task_stem] = task_id
    return mapping
get_project_id_from_name("Main 4")
5
tasks = get_tasks(5)
mapping = index_task_filestem_to_id(tasks)
mapping
{'hsi_4_0717_209_001_main.wav': 71,
 'hsi_4_0717_209_002_main.wav': 72,
 'hsi_4_0717_209_003_main.wav': 73,
 'hsi_4_0717_210_001_main.wav': 74,
 'hsi_4_0717_210_003_main.wav': 75,
 'hsi_4_0717_211_001_main.wav': 76,
 'hsi_4_0717_211_002_main.wav': 77,
 'hsi_4_0717_211_003_main.wav': 78,
 'hsi_4_0717_222_002_main.wav': 79,
 'hsi_4_0717_222_003_main.wav': 80,
 'hsi_4_0717_227_002_main.wav': 81,
 'hsi_4_0717_227_003_main.wav': 82,
 'hsi_4_0717_227_004_main.wav': 83}
import json

def convert_json(filename):
    segments = []
    last_end = 0.0

    with open(filename) as inf:
        data = json.load(inf)
    assert "results" in data, "no 'results' list, this is maybe not from Google ASR"
    for result in data["results"]:
        if len(result["alternatives"]) != 1:
            print("More than one alternative", result["alternatives"])
        item = result["alternatives"][0]
        if not "transcript" in item:
            continue
        text = item["transcript"]
        end_time = None
        start_time = last_end
        if "words" in item:
            if "startTime" in item["words"][0]:
                start_time = item["words"][0]["startTime"]
            if "words" in item:
                if "endTime" in item["words"][-1]:
                    end_time = item["words"][-1]["endTime"]
        else:
            if "resultEndTime" in item:
                end_time = item["resultEndTime"]
        if not end_time:
            print("Still no end time?", item)
            continue
        if start_time.endswith("s"):
            start_time = start_time[:-1]
        start_time = float(start_time)
        if end_time.endswith("s"):
            end_time = end_time[:-1]
        end_time = float(end_time)
        rec = {
            "value": {
                "start": start_time,
                "end": end_time,
                "channel": 0,
                "text": [text.strip()]
            },
            "from_name": "transcription",
            "to_name": "audio",
            "type": "textarea",
        }
        segments.append(rec)
        last_end = end_time

    return segments
def post_results(id, task, project, results):
    ep = f"{host}annotations/{id}/?taskID={task}&project={project}"

    cur_headers = {i: headers[i] for i in headers}
    cur_headers["Content-type"] = "application/json"

    content = {
        "was_cancelled": False,
        "ground_truth": False,
        "project": project,
        "draft_id": 0,
        "parent_prediction": None,
        "parent_annotation": None,
        "result": results
    }
    r = requests.patch(ep, data=json.dumps(content), headers=cur_headers)
    return r
file = f"{input_dir}hsi_3_0715_209_006_main.json"
data = convert_json(file)
r = post_results(98, 22, 1, data)
print(r.text)
{"id":98,"result":[{"value":{"start":9.994,"end":10.839,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":9.994,"end":10.839,"channel":0,"text":["Comprehensible."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":57.443,"end":58.064,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":57.443,"end":58.064,"channel":0,"text":["Yeah, further."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":58.264,"end":58.444,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":58.264,"end":58.444,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":73.675,"end":74.576,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":73.675,"end":74.576,"channel":0,"text":["Oh, I'm good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":74.636,"end":75.757,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":74.636,"end":75.757,"channel":0,"text":["You're so welcome."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":78.359,"end":79.619,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":78.359,"end":79.619,"channel":0,"text":["I'm so glad you're here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":83.042,"end":84.403,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":83.042,"end":84.403,"channel":0,"text":["Yeah, thank you."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":84.563,"end":85.224,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":84.563,"end":85.224,"channel":0,"text":["Thank you."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":86.444,"end":86.945,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":86.444,"end":86.945,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":90.029,"end":97.773,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":90.029,"end":97.773,"channel":0,"text":["Yeah, yeah, with the stove and... But I did... Yeah, yeah, yeah, yeah, yeah, yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":98.234,"end":106.538,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":98.234,"end":106.538,"channel":0,"text":["Now in the summer we don't need it, but in the winter it's... It changes everything, it does, it's really great."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":107.859,"end":118.365,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":107.859,"end":118.365,"channel":0,"text":["Yeah, yeah, I'm really happy about... And also it's the view, it's so nice, and the sun comes in in the afternoon, and so..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":120.16,"end":146.813,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":120.16,"end":146.813,"channel":0,"text":["yeah yeah yeah it's nice but I also feel a little bit like prison feeling sometimes you know when it's dark and you have this I don't know but it's still it's beautiful yeah it is yeah and I do some yoga here in front of the window"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":148.476,"end":149.217,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":148.476,"end":149.217,"channel":0,"text":["Yeah, I have."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":149.637,"end":151.218,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":149.637,"end":151.218,"channel":0,"text":["It's great in the mornings."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":154.24,"end":157.082,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":154.24,"end":157.082,"channel":0,"text":["I really love the pictures I have on the wall."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":157.222,"end":161.025,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":157.222,"end":161.025,"channel":0,"text":["You know, it's my father who has been traveling a lot."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":161.605,"end":168.71,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":161.605,"end":168.71,"channel":0,"text":["So in each place he went, he took photos and he ordered these paintings for me."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":169.311,"end":172.653,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":169.311,"end":172.653,"channel":0,"text":["So this is from the desert in Sinai."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":174.054,"end":182.619,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":174.054,"end":182.619,"channel":0,"text":["And what you can see, the little black thing up there, it's a piece of the helicopter he was in."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":184.78,"end":194.526,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":184.78,"end":194.526,"channel":0,"text":["So, yeah, it's funny because, yeah, and also see the sun is coming up a bit because of the wind from the helicopter."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":195.326,"end":195.787,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":195.326,"end":195.787,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":196.527,"end":202.531,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":196.527,"end":202.531,"channel":0,"text":["And the other painting is from South America, actually."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":203.291,"end":203.911,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":203.291,"end":203.911,"channel":0,"text":["Yeah, yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":204.671,"end":211.153,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":204.671,"end":211.153,"channel":0,"text":["He was there when he was 20 and he went back several times in Chile."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":211.373,"end":213.053,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":211.373,"end":213.053,"channel":0,"text":["He loves, yeah, in Chile."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":213.834,"end":215.594,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":213.834,"end":215.594,"channel":0,"text":["He loves Chile, yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":216.034,"end":222.816,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":216.034,"end":222.816,"channel":0,"text":["And he went to, you know, he had some friends, they had a farm with horses."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":224.356,"end":225.957,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":224.356,"end":225.957,"channel":0,"text":["And have this old style."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":226.918,"end":230.441,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":226.918,"end":230.441,"channel":0,"text":["They were like a little bit Western, you know?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":231.862,"end":232.782,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":231.862,"end":232.782,"channel":0,"text":["Western feeling."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":232.822,"end":239.007,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":232.822,"end":239.007,"channel":0,"text":["Yeah, and they... Yeah, yeah it does."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":240.268,"end":241.669,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":240.268,"end":241.669,"channel":0,"text":["And with the cows and everything."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":241.709,"end":245.812,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":241.709,"end":245.812,"channel":0,"text":["Yeah, they have really good meat in South America, so..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":249.375,"end":269.194,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":249.375,"end":269.194,"channel":0,"text":["yeah i think he ate some and this other painting is from egypt yeah it's like one of the pyramids they had this beautiful entrance like gold covered entrance so yeah that's really really fun to have"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":275.692,"end":291.259,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":275.692,"end":291.259,"channel":0,"text":["Yeah, he had a company, pretty high tech, and he was selling his products all over the world."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":291.479,"end":294.861,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":291.479,"end":294.861,"channel":0,"text":["And here he was in Japan."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":296.161,"end":298.022,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":296.161,"end":298.022,"channel":0,"text":["Can you see these clouds?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":298.082,"end":304.327,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":298.082,"end":304.327,"channel":0,"text":["It looks like a person looking down, like a face looking down."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":304.347,"end":308.67,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":304.347,"end":308.67,"channel":0,"text":["It's really interesting, the weather coming to catch you."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":309.65,"end":313.513,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":309.65,"end":313.513,"channel":0,"text":["Yeah, it's really beautiful."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":313.573,"end":314.634,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":313.573,"end":314.634,"channel":0,"text":["He's really good at that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":315.774,"end":316.235,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":315.774,"end":316.235,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":322.304,"end":322.825,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":322.304,"end":322.825,"channel":0,"text":["He was what?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":324.186,"end":334.135,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":324.186,"end":334.135,"channel":0,"text":["Ah, yeah, but he sells some, because yeah, it's beautiful, but it's not his main job, you know."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":341.097,"end":351.106,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":341.097,"end":351.106,"channel":0,"text":["A little bit, you know, because I also travel so I got some of my, you know, these statues from my own travels."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":351.687,"end":359.073,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":351.687,"end":359.073,"channel":0,"text":["Because yeah, I got really interested in traveling because I went with him when I was small also a couple of times."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":360.214,"end":361.395,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":360.214,"end":361.395,"channel":0,"text":["So I got those."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":364.158,"end":364.518,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":364.158,"end":364.518,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":368.586,"end":369.617,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":368.586,"end":369.617,"channel":0,"text":["Yeah, thank you."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":373.382,"end":375.264,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":373.382,"end":375.264,"channel":0,"text":["The statues, yes, of course."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":376.685,"end":383.87,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":376.685,"end":383.87,"channel":0,"text":["Those two women, they are from two different parts of the world."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":384.811,"end":395.28,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":384.811,"end":395.28,"channel":0,"text":["The black one, she's from Tromsø in the south of Norway, really, really high up in the north."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":396.26,"end":400.984,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":396.26,"end":400.984,"channel":0,"text":["And we went there together once with a camping car."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":402.285,"end":402.945,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":402.285,"end":402.945,"channel":0,"text":["In the summer."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":403.865,"end":405.646,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":403.865,"end":405.646,"channel":0,"text":["And we found that in a little village."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":406.626,"end":408.327,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":406.626,"end":408.327,"channel":0,"text":["And I think it's so beautiful."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":408.467,"end":412.248,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":408.467,"end":412.248,"channel":0,"text":["She's standing like, I don't know, something noble with her."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":412.788,"end":415.949,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":412.788,"end":415.949,"channel":0,"text":["Something, yeah, I don't know how to say it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":416.089,"end":418.85,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":416.089,"end":418.85,"channel":0,"text":["Something fragile, but still strong."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":419.95,"end":430.333,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":419.95,"end":430.333,"channel":0,"text":["Yeah, and the other woman, we found her in California, actually."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":431.694,"end":438.341,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":431.694,"end":438.341,"channel":0,"text":["Yeah, we went to an old Indian village and found her there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":442.446,"end":443.767,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":442.446,"end":443.767,"channel":0,"text":["Yeah, they do, they do."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":445.509,"end":450.835,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":445.509,"end":450.835,"channel":0,"text":["The only thing, you know what the only thing I'm really not satisfied with in this room is?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":454.668,"end":455.409,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":454.668,"end":455.409,"channel":0,"text":["It's the garbage."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":456.87,"end":464.194,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":456.87,"end":464.194,"channel":0,"text":["I just, I had this really nice garbage holder, but it fell."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":465.135,"end":468.237,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":465.135,"end":468.237,"channel":0,"text":["And yeah, I just had this for, yeah, it broke."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":468.317,"end":471.119,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":468.317,"end":471.119,"channel":0,"text":["So I have this just now."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":475.382,"end":477.644,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":475.382,"end":477.644,"channel":0,"text":["Yeah, but I, yeah, but I don't know."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":477.864,"end":479.845,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":477.864,"end":479.845,"channel":0,"text":["I don't want to take anything random."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":480.045,"end":482.647,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":480.045,"end":482.647,"channel":0,"text":["I want to take something that fits with the rest."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":484.517,"end":484.937,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":484.517,"end":484.937,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":488.019,"end":488.76,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":488.019,"end":488.76,"channel":0,"text":["Oh, thank you."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":492.282,"end":493.203,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":492.282,"end":493.203,"channel":0,"text":["Yeah, but it's not."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":493.983,"end":494.404,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":493.983,"end":494.404,"channel":0,"text":["It's only."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":494.424,"end":496.105,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":494.424,"end":496.105,"channel":0,"text":["Yeah, exactly."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":496.885,"end":498.627,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":496.885,"end":498.627,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":498.687,"end":499.207,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":498.687,"end":499.207,"channel":0,"text":["Thank you."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":500.408,"end":501.809,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":500.408,"end":501.809,"channel":0,"text":["I hope you come back."]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":"Whisper large-v2@whisper.fake, 2","created_ago":"0 minutes","completed_by":2,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-20T12:19:24.848145Z","updated_at":"2024-09-20T12:19:51.486116Z","draft_created_at":null,"lead_time":1.949,"import_id":null,"last_action":null,"task":22,"project":1,"updated_by":1,"parent_prediction":null,"parent_annotation":null,"last_created_by":null}
map2 = {k[1]: (k[0]+250) for k in enumerate(mapping)}
mapping
{'hsi_4_0717_209_001_main.wav': 71,
 'hsi_4_0717_209_002_main.wav': 72,
 'hsi_4_0717_209_003_main.wav': 73,
 'hsi_4_0717_210_001_main.wav': 74,
 'hsi_4_0717_210_003_main.wav': 75,
 'hsi_4_0717_211_001_main.wav': 76,
 'hsi_4_0717_211_002_main.wav': 77,
 'hsi_4_0717_211_003_main.wav': 78,
 'hsi_4_0717_222_002_main.wav': 79,
 'hsi_4_0717_222_003_main.wav': 80,
 'hsi_4_0717_227_002_main.wav': 81,
 'hsi_4_0717_227_003_main.wav': 82,
 'hsi_4_0717_227_004_main.wav': 83}
for task in mapping:
    jsonfile = task.replace(".wav", ".json")
    file = Path(input_dir) / jsonfile
    print(file)
    if not file.exists():
        continue
    if not task in map2:
        continue
    data = convert_json(str(file))
    r = post_results(map2[task], mapping[task], 6, data)
    # count += 1
    print(r.text)
/Users/joregan/Playing/hsi_google/hsi_4_0717_209_001_main.json
{"id":250,"result":[{"value":{"start":9.2,"end":9.7,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":22.6,"end":22.9,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":24.7,"end":26.8,"channel":0,"text":["Now you're in inside the table, though."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":27.4,"end":28.0,"channel":0,"text":["That's better."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":30.4,"end":31.9,"channel":0,"text":["So you cuz you don't see the room."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":36.5,"end":37.2,"channel":0,"text":["This is funny."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":37.9,"end":39.4,"channel":0,"text":["Okay, should we start?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":42.7,"end":43.8,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":47.2,"end":49.6,"channel":0,"text":["but you want me to walk around in the room and"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":54.3,"end":54.6,"channel":0,"text":["yep."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":56.9,"end":57.2,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":59.2,"end":61.4,"channel":0,"text":["So, right behind you, there is my computer."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":63.0,"end":63.6,"channel":0,"text":["It's on the table."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":64.9,"end":68.1,"channel":0,"text":["Yeah, I opened it up in case I wanted to do something later."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":71.1,"end":73.6,"channel":0,"text":["And no actually not. I got it from my brother."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":74.5,"end":76.3,"channel":0,"text":["my new 1, it broke, but this 1"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":77.3,"end":78.8,"channel":0,"text":["Ah, it's old but it works."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":81.3,"end":82.5,"channel":0,"text":["And they also have."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":83.8,"end":85.8,"channel":0,"text":["My beautiful painting. Do you like it?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":87.5,"end":88.0,"channel":0,"text":["It's"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":89.7,"end":91.9,"channel":0,"text":["it's a dark ocean and a ship."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":92.8,"end":94.7,"channel":0,"text":["And also a bit of sky."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":95.9,"end":96.7,"channel":0,"text":["1 part is"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":97.8,"end":100.2,"channel":0,"text":["quite light and the other part is quite dark."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":101.4,"end":102.8,"channel":0,"text":["Very dramatic and bright."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":105.8,"end":106.2,"channel":0,"text":["and um,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":109.1,"end":114.3,"channel":0,"text":["Well, I do like this 1 very much but there's also 1 with a lot of towels on it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":115.5,"end":118.5,"channel":0,"text":["and it looks like, yeah, it's it must be something from"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":120.4,"end":128.0,"channel":0,"text":["when all the pilgrims came to America and they were moving across the country because they have like a trailer and a horse. And"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":129.2,"end":131.9,"channel":0,"text":["Just lots of cows. Also, I don't know where they got the cows, but"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":132.8,"end":137.0,"channel":0,"text":["And then there's 1 of the desert. There's a thing loosening here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":138.6,"end":141.5,"channel":0,"text":["For my pinky finger and maybe from that 1 too."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":143.3,"end":143.5,"channel":0,"text":["Thank you."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":145.1,"end":146.3,"channel":0,"text":["Oh there, you can stand. So"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":147.7,"end":148.6,"channel":0,"text":["And then there's 1."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":149.9,"end":152.6,"channel":0,"text":["That almost looks like something from a Star Wars movie."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":154.2,"end":157.4,"channel":0,"text":["But I guess it's just a painting of a desert."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":158.2,"end":158.6,"channel":0,"text":["Environment."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":159.7,"end":161.0,"channel":0,"text":["And then we have 1 over there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":162.3,"end":163.0,"channel":0,"text":["Right behind you."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":164.3,"end":168.2,"channel":0,"text":["Well, that's the that's sort of a TV but then there's a painting, like yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":169.0,"end":170.7,"channel":0,"text":["yeah, you you you see it um,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":172.6,"end":177.1,"channel":0,"text":["Looks like an old inside of an old church perhaps or an old building."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":179.0,"end":182.4,"channel":0,"text":["With a lot of paintings in the ceiling and on the walls."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":183.7,"end":184.9,"channel":0,"text":["And it's a very huge."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":194.4,"end":196.4,"channel":0,"text":["Because my apartment is too small."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":197.7,"end":199.4,"channel":0,"text":["I had to fit everything in here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":200.6,"end":205.3,"channel":0,"text":["I moved from a big house to this small apartment. And now I have all this furniture and"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":206.0,"end":207.1,"channel":0,"text":["no, where else to put it?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":211.1,"end":213.8,"channel":0,"text":["In the middle of the room. Yeah, that's a good question."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":215.2,"end":216.0,"channel":0,"text":["Maybe I could."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":218.9,"end":220.8,"channel":0,"text":["have them by the window instead, perhaps"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":222.3,"end":224.0,"channel":0,"text":["Or maybe over on that wall."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":231.3,"end":232.6,"channel":0,"text":["Oh, the statues."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":233.3,"end":236.1,"channel":0,"text":["Well, my father is an artist and they're"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":236.7,"end":237.3,"channel":0,"text":["they're from him."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":239.8,"end":243.2,"channel":0,"text":["Uh, I like the hand. There's a big hand."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":245.8,"end":249.1,"channel":0,"text":["It's also, it's wanting something, but it's also giving I think."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":250.1,"end":254.7,"channel":0,"text":["And then there's a woman that's naked but she looks so like heavy and sad."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":255.9,"end":256.5,"channel":0,"text":["Then there's a"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":261.1,"end":261.6,"channel":0,"text":["right there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":263.6,"end":265.3,"channel":0,"text":["And uh, there's a"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":266.3,"end":269.0,"channel":0,"text":["man who's quite like tall and thin."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":273.2,"end":274.0,"channel":0,"text":["That looked like, what?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":280.4,"end":281.6,"channel":0,"text":["Wait, what's that word?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":282.3,"end":283.6,"channel":0,"text":["Do you have another base?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":284.4,"end":291.2,"channel":0,"text":["Oh, vases. Oh yeah, yeah, I love them actually and I love that. I have 3 3"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":292.3,"end":294.7,"channel":0,"text":["Of like 3 of the same but they're different colors."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":296.2,"end":305.8,"channel":0,"text":["I have 1 see through 1 blue and 1 green. So the blue is like the ocean and the green is like the grass and the see-through is like, I don't know."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":306.4,"end":307.5,"channel":0,"text":["The Stars, Maybe."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":317.0,"end":318.8,"channel":0,"text":["No, I have no plants."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":319.4,"end":321.3,"channel":0,"text":["No, I do. I have 1 plant."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":323.4,"end":326.0,"channel":0,"text":["And that 1 actually cleans the air."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":326.8,"end":327.0,"channel":0,"text":["Yep."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":328.8,"end":332.9,"channel":0,"text":["but I I love the windows and how the light shines in on the floor,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":334.2,"end":336.7,"channel":0,"text":["That's beautiful. I think that's the best part."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":342.1,"end":342.3,"channel":0,"text":["Yep."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":345.2,"end":347.8,"channel":0,"text":["Thank you. And I also have a fireplace."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":349.0,"end":352.6,"channel":0,"text":["But there's no fire in it. Yeah, I know you can come back in the winter."]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":" google-asr@fake.co, 5","created_ago":"4 minutes","completed_by":5,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-24T10:10:09.994874Z","updated_at":"2024-09-24T10:14:19.115298Z","draft_created_at":null,"lead_time":2.789,"import_id":null,"last_action":null,"task":71,"project":6,"updated_by":5,"parent_prediction":null,"parent_annotation":null,"last_created_by":null}
/Users/joregan/Playing/hsi_google/hsi_4_0717_209_002_main.json
{"id":251,"result":[{"value":{"start":8.9,"end":11.4,"channel":0,"text":["Well, yeah, I think you maybe have to look at the fingers."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":12.3,"end":13.7,"channel":0,"text":["in the pinky finger is,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":27.5,"end":28.7,"channel":0,"text":["Yeah. Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":35.4,"end":36.0,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":37.1,"end":37.3,"channel":0,"text":["Good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":38.7,"end":42.1,"channel":0,"text":["But I'm wondering about the fourth vase. Where is it? Did you break it?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":46.5,"end":48.5,"channel":0,"text":["I have 3 now. I used to have 4"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":54.0,"end":55.2,"channel":0,"text":["I had a black 1 as well."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":56.9,"end":58.3,"channel":0,"text":["See through blue, green and black."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":59.9,"end":60.5,"channel":0,"text":["Did you break it?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":65.6,"end":66.2,"channel":0,"text":["That you moved it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":70.2,"end":75.3,"channel":0,"text":["Okay, and that weird waste bin over there. Is that something you put their"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":78.6,"end":83.9,"channel":0,"text":["That's good but it looks you can bring that with you, okay, because I don't really like it. I think it's ugly."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":85.8,"end":90.4,"channel":0,"text":["And how about the cleaning is like, the the desk is it did you dust it?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":93.5,"end":93.8,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":95.5,"end":96.1,"channel":0,"text":["Yeah, cool."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":96.9,"end":102.0,"channel":0,"text":["And also because this is a part where you can often forget the lower part of the table."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":104.6,"end":106.0,"channel":0,"text":["Did you dust it?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":107.1,"end":107.3,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":108.6,"end":112.1,"channel":0,"text":["But before I come back, I would really like for you to dust it. Okay?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":113.2,"end":115.1,"channel":0,"text":["and I'm also wondering if you, um,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":117.2,"end":119.1,"channel":0,"text":["Vacuum under the couches."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":124.6,"end":125.7,"channel":0,"text":["Did you find them heavy to move?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":129.2,"end":130.7,"channel":0,"text":["Oh, so you're strong."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":133.5,"end":134.8,"channel":0,"text":["Okay. So, uh"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":137.9,"end":139.0,"channel":0,"text":["The windows look."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":140.7,"end":141.2,"channel":0,"text":["Quite dirty."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":146.8,"end":147.4,"channel":0,"text":["Uhuh."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":148.2,"end":148.9,"channel":0,"text":["oh,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":150.6,"end":152.2,"channel":0,"text":["So, the rain messed them up."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":152.7,"end":154.6,"channel":0,"text":["Okay. So how about the insides"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":158.0,"end":159.1,"channel":0,"text":["You have to check, okay?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":159.9,"end":163.0,"channel":0,"text":["So I would like for you to do that before I come back. Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":164.9,"end":165.2,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":166.5,"end":172.1,"channel":0,"text":["That's cool. And also, have you been using the fireplace at all? Have you been have?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":173.5,"end":174.2,"channel":0,"text":["No fires."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":176.5,"end":177.0,"channel":0,"text":["Quite nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":178.5,"end":179.3,"channel":0,"text":["On a rainy night."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":187.4,"end":189.0,"channel":0,"text":["What do you mean? You're going to take it with you?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":193.1,"end":193.3,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":194.6,"end":196.9,"channel":0,"text":["Well, maybe you have to pay me a little bit then."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":200.7,"end":202.1,"channel":0,"text":["Okay. You can have it for."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":204.9,"end":205.5,"channel":0,"text":["100 bucks."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":206.6,"end":206.8,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":209.9,"end":210.5,"channel":0,"text":["Yeah, cool."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":212.5,"end":215.0,"channel":0,"text":["Yeah, another lights are working. That's good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":216.8,"end":218.1,"channel":0,"text":["And how about the TV?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":219.1,"end":220.5,"channel":0,"text":["Everything. Okay, with the TV?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":221.8,"end":224.9,"channel":0,"text":["Well, I'm just wondering. Did it work? Well and did you take care of it?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":229.9,"end":231.2,"channel":0,"text":["You didn't watch the TV."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":233.0,"end":233.8,"channel":0,"text":["Uhuh."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":234.7,"end":235.1,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":237.3,"end":238.2,"channel":0,"text":["Fair enough."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":240.0,"end":241.5,"channel":0,"text":["But this lamp is looking very"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":244.5,"end":244.9,"channel":0,"text":["I don't know."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":247.9,"end":248.5,"channel":0,"text":["Animated."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":249.5,"end":252.4,"channel":0,"text":["It's like it looks weird. Did you do something with it?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":257.6,"end":257.7,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":262.2,"end":263.9,"channel":0,"text":["I don't even remember what it was before."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":265.3,"end":265.5,"channel":0,"text":["Do you?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":268.8,"end":269.0,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":272.5,"end":273.1,"channel":0,"text":["No, it's fine."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":274.7,"end":275.2,"channel":0,"text":["It's just knew."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":275.9,"end":276.2,"channel":0,"text":["To me."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":279.9,"end":282.5,"channel":0,"text":["Oh and I see you took care of my plant. Thank you."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":286.1,"end":286.3,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":287.4,"end":290.4,"channel":0,"text":["Good, cuz I would be quite upset if it had died."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":293.9,"end":301.1,"channel":0,"text":["Well, I think everything looks good. I mean, go find the the black vase, please. And they can take the yellow painting with you."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":302.1,"end":302.4,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":303.3,"end":304.4,"channel":0,"text":["Cool, thank you."]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":" google-asr@fake.co, 5","created_ago":"4 minutes","completed_by":5,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-24T10:10:14.504901Z","updated_at":"2024-09-24T10:14:19.231622Z","draft_created_at":null,"lead_time":1.83,"import_id":null,"last_action":null,"task":72,"project":6,"updated_by":5,"parent_prediction":null,"parent_annotation":null,"last_created_by":null}
/Users/joregan/Playing/hsi_google/hsi_4_0717_209_003_main.json
{"id":252,"result":[{"value":{"start":0.0,"end":1.9,"channel":0,"text":["And is this your place now?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":3.6,"end":3.9,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":8.8,"end":9.0,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":15.1,"end":16.1,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":20.5,"end":23.2,"channel":0,"text":["Thank you for having me."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":24.1,"end":26.6,"channel":0,"text":["So okay, beautiful lighting."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":27.7,"end":30.2,"channel":0,"text":["Beautiful with the windows and the view there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":32.0,"end":32.6,"channel":0,"text":["Maybe it's a bit."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":33.9,"end":36.3,"channel":0,"text":["Cramped like a lot of furniture in a small space."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":39.2,"end":42.3,"channel":0,"text":["Well, I think maybe when should"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":43.6,"end":43.7,"channel":0,"text":["Take."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":44.7,"end":46.5,"channel":0,"text":["since this couch is,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":47.5,"end":48.6,"channel":0,"text":["well, there's a couch and a"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":50.3,"end":53.1,"channel":0,"text":["and a chair, right? And we can put that over in that corner."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":54.3,"end":58.1,"channel":0,"text":["And 1 can be the long. 1 can be, the couch can be that way and then the"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":59.1,"end":60.4,"channel":0,"text":["Couch can be next to it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":61.9,"end":63.9,"channel":0,"text":["I think that would open up this space."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":64.9,"end":66.9,"channel":0,"text":["Or actually, it would also be beautiful."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":69.0,"end":72.4,"channel":0,"text":["To put the couch and chair."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":73.0,"end":74.6,"channel":0,"text":["Facing the fireplace."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":76.3,"end":86.6,"channel":0,"text":["There's a fireplace and then you would just take the cash like that and have the chair there. This will have to find another space. Maybe"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":88.7,"end":89.9,"channel":0,"text":["Oh, the the long."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":91.7,"end":98.7,"channel":0,"text":["Bureau, I don't even know. I forgot the name of it but this huge Furniture. Um,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":100.5,"end":101.4,"channel":0,"text":["Could maybe."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":103.2,"end":111.7,"channel":0,"text":["I'm thinking but if yeah, cuz if we would put the catch and chair there facing the fireplace, the desk would be turned that way."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":113.1,"end":115.0,"channel":0,"text":["so, it would be more of a like,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":116.7,"end":118.7,"channel":0,"text":["Area for riding and stuff over there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":119.7,"end":128.1,"channel":0,"text":["And then this, yeah, I think maybe this big furniture would have to go over there. So there's desk. There's the"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":135.9,"end":142.7,"channel":0,"text":["Bureau, let's go to Bureau. It's not really but that's the thing right now. So desk Bureau and the couch"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":144.1,"end":150.8,"channel":0,"text":["And that also opens up for the window and then this table, I just think maybe get rid of that big table."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":151.9,"end":158.4,"channel":0,"text":["Because it's too big for this room because it's a sofa table, right? But it's too big of a sofa table for such a small space."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":162.5,"end":173.1,"channel":0,"text":["Well that also cuz it's nice to have like a couch and then a chair next to it so you can you can be several people. You can like almost faced each other a little bit or you can watch the fire"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":174.9,"end":177.6,"channel":0,"text":["then there's this situation with the TV, or their"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":180.3,"end":184.5,"channel":0,"text":["Then it's possible to just sit in the couch or the chair to watch the TV."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":185.6,"end":186.2,"channel":0,"text":["Which is good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":191.4,"end":195.1,"channel":0,"text":["I think that 1 goes really well. There, the it's"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":196.0,"end":198.1,"channel":0,"text":["it's such a big painting and it's"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":199.5,"end":200.9,"channel":0,"text":["right in the middle of the wall, which is"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":201.9,"end":208.3,"channel":0,"text":["beautiful. I think maybe these 2 are a little off the 1, with the cows and the pilgrims and the desert."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":209.3,"end":213.3,"channel":0,"text":["Um, I'm thinking actually that 1 with a black frame."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":214.6,"end":218.1,"channel":0,"text":["Because they go together in that way that that they both have black frames."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":218.7,"end":228.3,"channel":0,"text":["It's the desk were to be under. That, that would look much more like 1 piece of furniture go together quite well, I think with the dark desk and the"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":229.1,"end":235.2,"channel":0,"text":["Dark framed painting and that but I think maybe you should just get rid of those 2."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":236.6,"end":239.9,"channel":0,"text":["And maybe have like flowers or something. On top of the"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":240.6,"end":241.3,"channel":0,"text":["The fireplace."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":242.8,"end":246.2,"channel":0,"text":["maybe like the vases maybe they could be on top of the"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":247.0,"end":249.2,"channel":0,"text":["fireplace and have like fresh flowers in them."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":250.8,"end":254.9,"channel":0,"text":["well, the the 3 vases placed over there because it looks"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":256.4,"end":265.1,"channel":0,"text":["don't be offended but it looks a little bit like a museum over there over here with vases and statues like all in a row."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":267.8,"end":269.7,"channel":0,"text":["It was okay then I'm sorry. Well."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":270.8,"end":273.9,"channel":0,"text":["You succeeded with your intention then."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":275.0,"end":280.9,"channel":0,"text":["But if I were to suggest something, it would be to loosen it up a little bit."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":282.1,"end":284.5,"channel":0,"text":["And also this small table with a plant."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":285.1,"end":287.6,"channel":0,"text":["Maybe that could be a sofa table."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":290.1,"end":293.1,"channel":0,"text":["Because it's nice to have something to put a cup or a glass, you know?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":301.1,"end":304.6,"channel":0,"text":["Well, I actually like how the lights."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":306.1,"end":310.5,"channel":0,"text":["Are in the roof like that. It's quite nice because they dim also, I guess."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":312.2,"end":318.5,"channel":0,"text":["and that lamp, I think should be over than that corner rather than their"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":320.1,"end":322.5,"channel":0,"text":["By the desk. Exactly. I think that would be nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":325.5,"end":325.7,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":328.7,"end":329.4,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":330.7,"end":331.8,"channel":0,"text":["You have to hide it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":333.8,"end":340.4,"channel":0,"text":["well you have 2 and I mean you don't need the blue 1 I guess the blue 1 looks very much like it's a"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":342.3,"end":343.8,"channel":0,"text":["I don't know, recycle center."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":344.5,"end":353.3,"channel":0,"text":["And this is your home, not a recycle center, but you do have the wipe in and that goes fine together with the desk. And actually I didn't see it at first so which is a good thing."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":356.5,"end":356.8,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":363.1,"end":366.8,"channel":0,"text":["I think maybe in the middle here you should have like a big plant or something."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":368.0,"end":371.0,"channel":0,"text":["Like that, that would go together. Nice with the windows and the lights."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":373.2,"end":373.5,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":374.7,"end":375.0,"channel":0,"text":["Thank you."]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":" google-asr@fake.co, 5","created_ago":"4 minutes","completed_by":5,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-24T10:10:18.979136Z","updated_at":"2024-09-24T10:14:19.348624Z","draft_created_at":null,"lead_time":1.657,"import_id":null,"last_action":null,"task":73,"project":6,"updated_by":5,"parent_prediction":null,"parent_annotation":null,"last_created_by":null}
/Users/joregan/Playing/hsi_google/hsi_4_0717_210_001_main.json
{"id":253,"result":[{"value":{"start":8.4,"end":9.0,"channel":0,"text":["Hm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":14.8,"end":15.8,"channel":0,"text":["Yep, that's good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":34.1,"end":35.0,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":36.3,"end":37.0,"channel":0,"text":["Do you like it?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":39.7,"end":45.9,"channel":0,"text":["Yeah, I I'm really, really satisfied with the plants in this, in the ceiling. How they're hanging from the ceiling."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":49.1,"end":54.4,"channel":0,"text":["No, I just like that. There are 3 and they're hanging like symmetrically. That's beautiful. I think."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":55.4,"end":61.1,"channel":0,"text":["And also that there's a window both there and there. So you feel like an openness to the outside?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":63.3,"end":69.7,"channel":0,"text":["and also I have my little Cozy Corner over there and I can like have some tea and sit down and"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":72.0,"end":73.6,"channel":0,"text":["The 1 in the ceiling."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":74.9,"end":75.4,"channel":0,"text":["Well."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":76.2,"end":80.4,"channel":0,"text":["There are also 3, I like to have things in threes, right? And uh,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":81.5,"end":83.4,"channel":0,"text":["I just thought it was fun to put them that way."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":84.3,"end":86.5,"channel":0,"text":["Like it's not, it's unconventional."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":87.4,"end":88.8,"channel":0,"text":["And they're on a diagonal."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":90.1,"end":95.6,"channel":0,"text":["So you get aware of the room space in that direction as well."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":98.2,"end":99.2,"channel":0,"text":["and also, I have my"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":101.2,"end":102.4,"channel":0,"text":["Big small plants."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":103.4,"end":104.2,"channel":0,"text":["it's quite like,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":105.6,"end":108.0,"channel":0,"text":["Looks like a baby but it will grow bigger. I think."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":109.7,"end":110.2,"channel":0,"text":["Mhm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":112.6,"end":117.3,"channel":0,"text":["But it does look a bit like a baby but it's still big like it's so thin in a way."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":120.6,"end":122.7,"channel":0,"text":["Yeah, and I think and I bought this new couch."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":125.3,"end":126.3,"channel":0,"text":["It looks comfy, right?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":131.4,"end":132.1,"channel":0,"text":["About the what?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":134.4,"end":135.3,"channel":0,"text":["Pillows."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":137.1,"end":141.7,"channel":0,"text":["Oh the pillows. Yeah, 1 of them is actually it looks like it's glowing which is weird."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":143.3,"end":151.6,"channel":0,"text":["The left 1. It's like it's glowing in the dark like there's a light inside it. I didn't know, I don't know how it got like that but it's fun."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":154.3,"end":154.9,"channel":0,"text":["but it's"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":156.3,"end":160.2,"channel":0,"text":["I think I put a blanket over there. A black blanket, which"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":161.4,"end":164.6,"channel":0,"text":["Is a bit confusing because it, it looks a bit like there's a hole there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":166.3,"end":166.6,"channel":0,"text":["but,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":167.5,"end":169.6,"channel":0,"text":["That's fixable I can just take it off."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":171.4,"end":180.3,"channel":0,"text":["And also I I that is a gift from a friend. This statue, right behind you right in front of you. Well, it's a naked man. Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":181.3,"end":182.7,"channel":0,"text":["And a nice pose."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":183.4,"end":186.9,"channel":0,"text":["Someone thought this would be, this would be the place for naked men, I guess."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":191.7,"end":192.2,"channel":0,"text":["What?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":194.3,"end":197.5,"channel":0,"text":["Yeah, well, I think she thinks she wishes me."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":198.2,"end":199.3,"channel":0,"text":["More men in my life."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":200.9,"end":202.6,"channel":0,"text":["And also this painting, though,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":203.6,"end":204.6,"channel":0,"text":["I got it from my mother."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":205.9,"end":208.1,"channel":0,"text":["I have to have it there so she won't be sad."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":209.8,"end":210.1,"channel":0,"text":["Well, it's"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":212.3,"end":215.8,"channel":0,"text":["It's an old painting old house horses."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":217.2,"end":221.2,"channel":0,"text":["You know, it's something from her grandmother."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":223.5,"end":224.2,"channel":0,"text":["But yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":225.3,"end":227.7,"channel":0,"text":["Something that wouldn't be. It doesn't belong here really but"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":231.2,"end":247.4,"channel":0,"text":["Well, the flower 1 is my favorite with all the white and yellow flowers and it goes so well together with a plants hanging there in the roof and also, that 1 is also nice. I think I, I enjoying paintings with nature on them and the tree painting over there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":248.7,"end":250.6,"channel":0,"text":["It's it's actually a photo."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":251.6,"end":252.1,"channel":0,"text":["Of a tree."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":253.7,"end":256.8,"channel":0,"text":["I think it's magical in a way so I like that. I like both of those."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":261.6,"end":265.3,"channel":0,"text":["Well, it's quite empty over here. It's just very white."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":266.6,"end":267.8,"channel":0,"text":["I should have something here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":271.5,"end":272.8,"channel":0,"text":["Or maybe like a mirror."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":280.7,"end":282.0,"channel":0,"text":["Well, that's my Cozy Corner."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":284.3,"end":284.9,"channel":0,"text":["Do you think?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":286.3,"end":289.1,"channel":0,"text":["No, it's a Cozy Corner, it's not out of place."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":289.9,"end":295.2,"channel":0,"text":["See? I have the light and I can have my book and there's a table. So I can have like,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":296.3,"end":299.7,"channel":0,"text":["Cup of tea or some wine. And I can read something."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":302.4,"end":307.8,"channel":0,"text":["Uh yeah. That might be true though but then I can use 1 in the pillows. Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":309.3,"end":313.5,"channel":0,"text":["I don't know about the the waste bin over there. That's like still here from."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":314.3,"end":317.7,"channel":0,"text":["When I was fixing the place that looks really out of place."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":323.5,"end":323.6,"channel":0,"text":["Oh,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":325.0,"end":328.6,"channel":0,"text":["Yeah, it's because I enjoy tea so much. I want to celebrate tea."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":329.4,"end":330.8,"channel":0,"text":["That's also a gift there, actually."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":332.3,"end":339.0,"channel":0,"text":["And but they're funny. I think, why put kettles out? It's a weird thing. That's a that makes it fun."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":342.3,"end":346.1,"channel":0,"text":["But but there's 1 in the floors. Oh no, that's for watering."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":349.2,"end":350.4,"channel":0,"text":["Um, well."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":352.3,"end":357.4,"channel":0,"text":["I do have several in the kitchen as well, but those those are for looking for. I mean, looking at"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":359.7,"end":361.4,"channel":0,"text":["And it's so nice with the foot."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":362.7,"end":364.2,"channel":0,"text":["The foot cushion."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":365.2,"end":370.3,"channel":0,"text":["So comfortable, you sit down and you put your feet up. Love that"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":371.4,"end":374.0,"channel":0,"text":["I've always dreamt about it. Now I have 1. Yay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":377.4,"end":377.8,"channel":0,"text":["Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":379.0,"end":380.5,"channel":0,"text":["I bought it for this apartment."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":381.6,"end":382.5,"channel":0,"text":["Because I thought it matched."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":383.6,"end":384.7,"channel":0,"text":["It is really nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":385.6,"end":387.0,"channel":0,"text":["Have you felt it? It's quite soft."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":389.7,"end":391.6,"channel":0,"text":["Strange know, I think it's pretty."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":394.6,"end":395.1,"channel":0,"text":["It's not strange."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":396.9,"end":397.1,"channel":0,"text":["It's beautiful."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":399.5,"end":400.6,"channel":0,"text":["Exactly."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":401.7,"end":403.0,"channel":0,"text":["And it's so comfortable, too."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":404.1,"end":405.2,"channel":0,"text":["You can lie down on it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":414.5,"end":414.7,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":416.0,"end":418.4,"channel":0,"text":["Yeah, we'll go to the kitchen and make some tea."]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":" google-asr@fake.co, 5","created_ago":"3 minutes","completed_by":5,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-24T10:10:29.049644Z","updated_at":"2024-09-24T10:14:19.458896Z","draft_created_at":null,"lead_time":1.641,"import_id":null,"last_action":null,"task":74,"project":6,"updated_by":5,"parent_prediction":null,"parent_annotation":null,"last_created_by":null}
/Users/joregan/Playing/hsi_google/hsi_4_0717_210_003_main.json
{"id":254,"result":[{"value":{"start":17.1,"end":19.2,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":22.6,"end":23.0,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":24.0,"end":26.0,"channel":0,"text":["Well, we tried to change that then."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":27.4,"end":28.1,"channel":0,"text":["So, let's see."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":29.6,"end":32.9,"channel":0,"text":["How much chair foot piece other chair?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":34.9,"end":36.8,"channel":0,"text":["Plants. You have a lot of plants which is nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":38.4,"end":46.1,"channel":0,"text":["And also too beautiful Windows facing different directions, which is nice. You will have sunlight coming in at different times of the day."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":47.4,"end":48.3,"channel":0,"text":["Um, I think"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":50.1,"end":54.1,"channel":0,"text":["I would like to put, I would like to make this corner."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":55.5,"end":56.3,"channel":0,"text":["The couch corner."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":57.9,"end":61.3,"channel":0,"text":["so, we would put the couch there and this big beautiful chair"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":62.7,"end":63.8,"channel":0,"text":["over by that wall."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":65.1,"end":73.1,"channel":0,"text":["And also, of course, the foot piece would go along with the couch. So then you have a view over the entire space, which is nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":75.9,"end":78.9,"channel":0,"text":["There's a big foot couch that goes with a couch."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":81.0,"end":81.4,"channel":0,"text":["Um,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":85.7,"end":89.2,"channel":0,"text":["With a TV is right there now, which I think."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":92.9,"end":94.2,"channel":0,"text":["there's a door and"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":101.9,"end":104.9,"channel":0,"text":["maybe we should have like the couch there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":107.8,"end":109.6,"channel":0,"text":["And you could have the TV thing here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":112.0,"end":118.5,"channel":0,"text":["I think I would like like this area to be sort of the lounge area and over there. It could be a bit lighter."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":120.5,"end":124.2,"channel":0,"text":["So, okay, so this is my suggestion, the big couch there. The"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":125.2,"end":128.9,"channel":0,"text":["The big chair there which makes it like an L sort of."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":130.7,"end":131.6,"channel":0,"text":["We move the entire."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":133.1,"end":133.9,"channel":0,"text":["TV. And"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":135.0,"end":135.5,"channel":0,"text":["Table."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":136.8,"end":138.7,"channel":0,"text":["Or the bureau, it stands on over here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":140.9,"end":145.6,"channel":0,"text":["And then, I mean we would have to pull the rug, I think. So the rug is with the couch"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":146.9,"end":149.6,"channel":0,"text":["So that leaves us with a great like big space here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":151.2,"end":154.5,"channel":0,"text":["And then we can put the small table and the other chair."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":157.0,"end":158.0,"channel":0,"text":["Over here somewhere."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":159.2,"end":166.5,"channel":0,"text":["Well, there's a small armchair, there's a huge armchair that goes with a couch and there's a small armchair that looks a bit"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":168.0,"end":169.6,"channel":0,"text":["like it has a spiderweb back."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":170.6,"end":172.7,"channel":0,"text":["Yeah, which is cool. Cool detail."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":173.6,"end":177.8,"channel":0,"text":["And I also, I really like how these things go together with the small table and the"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":178.7,"end":180.3,"channel":0,"text":["small armchair and also the"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":181.7,"end":182.4,"channel":0,"text":["palm tree."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":183.6,"end":192.3,"channel":0,"text":["So maybe we can put them like in that corner over there together. Since there's a lot of plants and stuff going on over there. It can be like a jungle corner."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":196.0,"end":196.7,"channel":0,"text":["Yeah, cool."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":198.3,"end":198.8,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":200.3,"end":201.4,"channel":0,"text":["That would be great, I think."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":202.6,"end":206.0,"channel":0,"text":["So, what do you think about that like jungle Corner Lounge area?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":206.7,"end":207.7,"channel":0,"text":["Jungle corner."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":209.4,"end":210.3,"channel":0,"text":["Does that sound nice?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":213.5,"end":214.0,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":216.7,"end":218.0,"channel":0,"text":["well, maybe they should have like"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":219.2,"end":221.0,"channel":0,"text":["Wouldn't it be cool to have like pillars?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":222.6,"end":223.4,"channel":0,"text":["For each 1."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":224.3,"end":226.5,"channel":0,"text":["And maybe they could be over like by that wall."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":231.4,"end":235.5,"channel":0,"text":["Well, on a pillar I mean if the because there's a black 1 and a light 1,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":237.5,"end":240.5,"channel":0,"text":["And if you have pillars, maybe in different levels."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":242.1,"end":243.4,"channel":0,"text":["That could look sort of cool."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":244.3,"end":248.1,"channel":0,"text":["Actually, maybe they should be over in that corner between the windows."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":251.7,"end":252.2,"channel":0,"text":["Your what?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":254.4,"end":256.8,"channel":0,"text":["Oh, over there. That's right behind you. Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":258.1,"end":261.7,"channel":0,"text":["It's right by the TV now which is not a good place for it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":263.2,"end":265.7,"channel":0,"text":["Yeah, it's dangerous. Disturbs also the TV watching."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":267.6,"end":271.6,"channel":0,"text":["so we can have jungle corner and then we can have a bit and we can have 2 statues and maybe"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":275.1,"end":277.0,"channel":0,"text":["it's uh, right there on the"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":277.8,"end":278.6,"channel":0,"text":["On the big couch."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":281.9,"end":283.6,"channel":0,"text":["Well, you should probably have"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":284.7,"end":286.4,"channel":0,"text":["when you have like the couch and the"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":287.9,"end":293.8,"channel":0,"text":["The chair here. There's a, you have a small table also, and also always put the remote on that table."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":294.7,"end":295.4,"channel":0,"text":["That's a good idea."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":298.4,"end":300.0,"channel":0,"text":["I don't know what's over in that corner."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":304.0,"end":305.2,"channel":0,"text":["Is that a box?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":309.7,"end":314.1,"channel":0,"text":["Yeah. But I mean, there's a there's a white white box next to the"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":314.9,"end":315.7,"channel":0,"text":["TV thing."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":320.8,"end":322.9,"channel":0,"text":["Looks a bit like a b. Well, remove that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":323.8,"end":324.0,"channel":0,"text":["because,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":325.0,"end":329.8,"channel":0,"text":["It's it's just messy. Looking oh you have that furniture as well with a kettle on it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":331.8,"end":333.0,"channel":0,"text":["What to do with that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":337.6,"end":339.3,"channel":0,"text":["Not sure, maybe get rid of it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":343.3,"end":344.9,"channel":0,"text":["So maybe it's the jungle wall."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":346.3,"end":348.0,"channel":0,"text":["Not just jungle corner."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":349.2,"end":352.5,"channel":0,"text":["I don't know Lounge area Jungle Room. That's nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":353.9,"end":354.8,"channel":0,"text":["and also, since"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":355.5,"end":357.1,"channel":0,"text":["You have a possibility to open up."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":358.1,"end":361.4,"channel":0,"text":["Towards the outside I think because that's a door, I think."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":362.3,"end":362.6,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":363.3,"end":367.6,"channel":0,"text":["So then you can it's nice to have plants next to their because also you can have some plants outside."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":368.5,"end":372.1,"channel":0,"text":["And it sort of connects the inside and the outside in a nice way."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":377.7,"end":378.3,"channel":0,"text":["It's a good idea."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":379.2,"end":380.7,"channel":0,"text":["Don't you have any chairs outside?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":382.0,"end":382.3,"channel":0,"text":["oh,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":383.7,"end":384.0,"channel":0,"text":["Well."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":388.3,"end":391.0,"channel":0,"text":["Oh, okay. I think you should be outside. Definitely."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":392.3,"end":393.7,"channel":0,"text":["I don't know about the kettle."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":394.6,"end":396.0,"channel":0,"text":["And it seems a bit weird."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":402.8,"end":403.5,"channel":0,"text":["Oh, okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":404.6,"end":409.5,"channel":0,"text":["well, I I suggest having a pillar for every item and then putting them"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":410.6,"end":413.6,"channel":0,"text":["together in some formation. I think that would be cool."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":417.8,"end":418.7,"channel":0,"text":["Well yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":419.7,"end":427.6,"channel":0,"text":["Maybe like the museum area. Let's call it could be here where the TV is now and then there's a jungle area sort of"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":428.4,"end":430.5,"channel":0,"text":["We can call it like, art art area."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":432.1,"end":433.8,"channel":0,"text":["And you have a painting there, so that's good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":436.9,"end":437.2,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":438.4,"end":439.8,"channel":0,"text":["Cool. Good luck."]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":" google-asr@fake.co, 5","created_ago":"3 minutes","completed_by":5,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-24T10:10:42.492479Z","updated_at":"2024-09-24T10:14:19.572139Z","draft_created_at":null,"lead_time":1.824,"import_id":null,"last_action":null,"task":75,"project":6,"updated_by":5,"parent_prediction":null,"parent_annotation":null,"last_created_by":null}
/Users/joregan/Playing/hsi_google/hsi_4_0717_211_001_main.json
{"id":255,"result":[{"value":{"start":8.3,"end":9.1,"channel":0,"text":["Yep, that's good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":11.0,"end":11.8,"channel":0,"text":["Don't you love it?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":13.8,"end":22.0,"channel":0,"text":["Yes, and I'm still unpacking. You see I have all these boxes out, but this view is just amazing."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":23.5,"end":25.9,"channel":0,"text":["And also, I have my Bears with me."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":31.2,"end":41.3,"channel":0,"text":["Well, yeah, that 1 is that 1 I got from my grandparents when I was little so I I always keep that and that 1 is for my baby to come. Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":42.7,"end":43.6,"channel":0,"text":["so, the Little Panda"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":46.0,"end":54.5,"channel":0,"text":["Well, in 5 months so it's quite a long time still, but I did put lots of keys on the table, that's good, that's bad luck."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":58.6,"end":60.2,"channel":0,"text":["Could I haven't even learned, I don't know."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":61.0,"end":64.0,"channel":0,"text":["Well, that's my key car keys. But the other 1, the red 1."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":65.8,"end":67.7,"channel":0,"text":["I don't know. It must go to something."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":69.7,"end":73.0,"channel":0,"text":["Don't you do you recognize them the red ones?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":75.5,"end":76.1,"channel":0,"text":["Maybe."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":78.0,"end":84.3,"channel":0,"text":["Well, and then I have my favorite couch. It's quite old. I I really want to get a new 1 but I got these new pillows though."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":85.7,"end":87.6,"channel":0,"text":["Purple purple, white. Nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":88.9,"end":90.0,"channel":0,"text":["and a lot of"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":91.6,"end":92.7,"channel":0,"text":["um, and my art over there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":94.9,"end":95.7,"channel":0,"text":["I did actually."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":96.6,"end":98.4,"channel":0,"text":["I had this course last year."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":99.2,"end":104.5,"channel":0,"text":["Where I made vases. So that's basically what I know to do. The vase form."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":106.8,"end":112.5,"channel":0,"text":["Um I think the clear blue 1 that's my favorite color."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":114.4,"end":116.2,"channel":0,"text":["What's on the Shelf?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":118.2,"end":119.5,"channel":0,"text":["Second shelf from the bottom."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":120.3,"end":122.7,"channel":0,"text":["And then that horse up there with no head."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":123.8,"end":127.6,"channel":0,"text":["It fell off. I know I know. But I mean, it fell off in the"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":128.4,"end":129.3,"channel":0,"text":["In the move. So,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":130.7,"end":131.4,"channel":0,"text":["What can I say?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":138.2,"end":138.6,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":139.6,"end":142.1,"channel":0,"text":["So it's our TV sofa."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":142.6,"end":144.1,"channel":0,"text":["Windows. What else do you want?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":145.0,"end":147.6,"channel":0,"text":["Oh, I have a room here, too, I forgot."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":150.0,"end":150.6,"channel":0,"text":["So new."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":151.5,"end":153.5,"channel":0,"text":["here's my desk and uh,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":156.3,"end":159.4,"channel":0,"text":["it's a bit messy there, still. I haven't we and I need a chair."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":162.2,"end":166.0,"channel":0,"text":["Exactly. And you know what? I'm thinking to have 1 of those. Um,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":167.0,"end":168.2,"channel":0,"text":["Pilates balls."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":169.3,"end":170.6,"channel":0,"text":["Sit on by my desk."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":172.2,"end":177.5,"channel":0,"text":["No, no chair. And I'm thinking that's good for your back right to sit on those."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":179.9,"end":181.0,"channel":0,"text":["have you tried that or"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":181.8,"end":182.5,"channel":0,"text":["Sitting on a ball."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":187.9,"end":188.3,"channel":0,"text":["No."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":191.7,"end":192.8,"channel":0,"text":["Well."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":195.4,"end":196.4,"channel":0,"text":["this, I got"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":197.1,"end":198.9,"channel":0,"text":["As a gift from a relative."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":200.5,"end":202.7,"channel":0,"text":["It's old. It's been in our family a long time."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":204.0,"end":206.3,"channel":0,"text":["What sort of black and white? I think, maybe"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":208.8,"end":210.6,"channel":0,"text":["Is it from something? From the Bible?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":211.7,"end":213.1,"channel":0,"text":["oh, I don't really know, but it's"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":215.6,"end":220.7,"channel":0,"text":["Do you know I've seen it my entire life so I haven't really thought of what it is."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":222.5,"end":225.5,"channel":0,"text":["And then this 1, I love."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":229.8,"end":231.1,"channel":0,"text":["The ocean. And"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":232.1,"end":234.8,"channel":0,"text":["uh, bit of mountains and also"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":236.4,"end":237.3,"channel":0,"text":["This old kind of."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":238.4,"end":239.3,"channel":0,"text":["Flying mobile."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":240.1,"end":240.4,"channel":0,"text":["like,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":241.8,"end":247.6,"channel":0,"text":["Swedish. I know it's called seil. I don't know. The word in English. Yeah. Zeppelin is that the word?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":249.0,"end":250.4,"channel":0,"text":["it looks, it's like"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":251.6,"end":255.2,"channel":0,"text":["such a picture of freedom in a way, they're just gliding there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":260.6,"end":263.8,"channel":0,"text":["uh, yeah, I should probably put something in the"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":264.9,"end":265.8,"channel":0,"text":["in the ceiling."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":266.6,"end":268.4,"channel":0,"text":["Or maybe that light."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":269.1,"end":269.8,"channel":0,"text":["I should have like,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":271.2,"end":277.1,"channel":0,"text":["A similar 1 over the in that corner behind that chair with the panda."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":277.7,"end":278.4,"channel":0,"text":["I could have a."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":280.3,"end":282.6,"channel":0,"text":["Yeah, that would be nice with the lamp over there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":284.0,"end":285.2,"channel":0,"text":["Maybe something that would."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":287.1,"end":292.6,"channel":0,"text":["Pop up pop out like this. Like it would be several lamps, you know, in 1, Maybe."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":295.0,"end":302.3,"channel":0,"text":["But this is messy. I have to take those boxes away. Maybe you can take them with you when you leave, that would be I have 2 boxes over here by the way."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":305.0,"end":315.2,"channel":0,"text":["Well I would love it for you to take both. You can just put the small 1 in the big 1 and take them and throw them on your way. That would be so helpful. Thank you."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":316.9,"end":320.3,"channel":0,"text":["And of course I will be sitting over there. I really like how the light shines in"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":321.0,"end":322.5,"channel":0,"text":["By where the desk is."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":323.9,"end":326.3,"channel":0,"text":["So even though I'm working on my computer, I can get some sunlight."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":327.3,"end":327.5,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":336.4,"end":340.1,"channel":0,"text":["Well then I'll just have to turn that light off."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":342.0,"end":344.9,"channel":0,"text":["You are getting a lot of light in your face. Where's that coming from?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":348.4,"end":352.8,"channel":0,"text":["It's like yeah, I don't know like their looks like you're in the Sun."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":357.4,"end":362.7,"channel":0,"text":["Yeah, but that is a problem, of course, that lamp will have to be turned off when I watch TV."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":365.9,"end":366.3,"channel":0,"text":["What?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":367.6,"end":368.5,"channel":0,"text":["uh,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":369.3,"end":374.3,"channel":0,"text":["no, that's probably mine that 1. Don't you have yours like in your purse."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":378.6,"end":383.7,"channel":0,"text":["And the, what's that red thing? I mean the looks like a credit card but I don't think it is."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":387.9,"end":389.1,"channel":0,"text":["Yeah, I haven't seen it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":391.5,"end":394.8,"channel":0,"text":["But I did have movers here, maybe some of them."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":396.5,"end":397.0,"channel":0,"text":["Left it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":400.0,"end":402.2,"channel":0,"text":["I wonder if there's anything else back here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":403.6,"end":405.1,"channel":0,"text":["No, I haven't decorated it yet."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":410.2,"end":412.5,"channel":0,"text":["Well, it's almost settled."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":414.9,"end":415.3,"channel":0,"text":["Thank you."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":416.5,"end":417.9,"channel":0,"text":["I'm quite happy about it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":420.3,"end":420.5,"channel":0,"text":["Bye."]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":" google-asr@fake.co, 5","created_ago":"3 minutes","completed_by":5,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-24T10:10:47.273635Z","updated_at":"2024-09-24T10:14:19.697501Z","draft_created_at":null,"lead_time":1.778,"import_id":null,"last_action":null,"task":76,"project":6,"updated_by":5,"parent_prediction":null,"parent_annotation":null,"last_created_by":null}
/Users/joregan/Playing/hsi_google/hsi_4_0717_211_002_main.json
{"id":256,"result":[{"value":{"start":16.8,"end":17.9,"channel":0,"text":["What looks strange?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":19.1,"end":19.6,"channel":0,"text":["Fingers."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":25.4,"end":28.1,"channel":0,"text":["But they're all stuck though. I mean the things are there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":37.3,"end":39.3,"channel":0,"text":["yeah, but it's been like that the entire time"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":40.2,"end":42.4,"channel":0,"text":["Like the pinkies. I don't know what's happening with them."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":45.5,"end":46.6,"channel":0,"text":["It looks like they're broken."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":81.0,"end":83.9,"channel":0,"text":["Yeah, but I can't do any it's straight now."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":84.4,"end":86.8,"channel":0,"text":["But it's been looking like that the whole time."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":90.5,"end":92.8,"channel":0,"text":["I don't know why because the thing is, right."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":96.2,"end":96.8,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":97.9,"end":98.1,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":108.6,"end":108.8,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":114.1,"end":114.8,"channel":0,"text":["Yeah. Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":115.8,"end":116.7,"channel":0,"text":["So did you break anything?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":120.0,"end":123.2,"channel":0,"text":["But there used to be 2 more vases over there. Where are they?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":126.4,"end":126.7,"channel":0,"text":["Oh,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":127.8,"end":129.9,"channel":0,"text":["Well, 6 is a good number. Why didn't you keep them?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":135.0,"end":136.7,"channel":0,"text":["Oh, okay. Okay, fine."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":137.8,"end":144.0,"channel":0,"text":["So uh, where did you clean the rug? Yeah, of course. Okay. Good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":144.8,"end":148.0,"channel":0,"text":["And what about that? Waste bin over there? What's that doing there?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":149.1,"end":150.3,"channel":0,"text":["They're recycling bin."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":157.0,"end":158.4,"channel":0,"text":["okay, well,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":159.5,"end":162.9,"channel":0,"text":["please bring that with you because I don't want that there. Thank you. Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":164.7,"end":168.5,"channel":0,"text":["Okay. But and do you, what happened? Did you change? How the paintings are?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":170.9,"end":173.6,"channel":0,"text":["no, but when we used to be over there,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":175.3,"end":175.8,"channel":0,"text":["the big 1."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":176.8,"end":177.5,"channel":0,"text":["With the zipline."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":183.6,"end":185.5,"channel":0,"text":["Okay, but could you please put it back though?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":186.5,"end":192.3,"channel":0,"text":["To where it was. Yeah, did you take any pictures of how it was? When when I when you moved in?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":197.3,"end":201.0,"channel":0,"text":["Oh God. Why did you leave keys on the table? It's bad luck."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":204.4,"end":206.4,"channel":0,"text":["It's very much bad luck. Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":208.5,"end":210.2,"channel":0,"text":["Oh God, I can't look at them."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":211.4,"end":213.5,"channel":0,"text":["You should keep them in your pocket or on a"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":216.1,"end":217.7,"channel":0,"text":["Some, I don't know by the door."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":218.7,"end":220.1,"channel":0,"text":["You can't put them on the table."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":222.3,"end":224.1,"channel":0,"text":["Maybe it's a well-known thing."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":225.0,"end":228.5,"channel":0,"text":["Don't put keys on the table. It's very bad luck."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":229.3,"end":238.5,"channel":0,"text":["So, I hope you get that bad luck. If, if it's something, it doesn't stay in the apartment. Good. You have to take. So, take everything. That's your credit card as well, I guess, cuz that's not mine."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":241.0,"end":241.3,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":242.6,"end":243.3,"channel":0,"text":["That's a weird thing."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":244.4,"end":244.6,"channel":0,"text":["Hm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":246.4,"end":246.7,"channel":0,"text":["Oh well."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":248.4,"end":249.8,"channel":0,"text":["Anything else did you break anything?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":255.7,"end":256.7,"channel":0,"text":["What about the panda?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":263.6,"end":264.3,"channel":0,"text":["The panda."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":265.2,"end":267.0,"channel":0,"text":["No, I don't want the panda. You take the panda."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":269.4,"end":271.8,"channel":0,"text":["What's the why did you buy those?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":272.8,"end":274.5,"channel":0,"text":["Are you visiting a children?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":279.3,"end":280.5,"channel":0,"text":["Oh yeah. Okay. Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":281.9,"end":285.0,"channel":0,"text":["No, I guess you should just give them to someone who has children."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":285.9,"end":286.1,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":287.1,"end":288.3,"channel":0,"text":["I really don't want them."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":288.9,"end":291.6,"channel":0,"text":["I think they're a bit scary Panda and Teddy."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":292.2,"end":297.9,"channel":0,"text":["No, thank you. So what I want you to bring with you is this recycling bin, Teddy panda?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":298.4,"end":299.9,"channel":0,"text":["Phone keys keys keys."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":301.2,"end":302.2,"channel":0,"text":["And please replace."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":303.9,"end":305.9,"channel":0,"text":["The painting over there and the bases."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":308.3,"end":308.5,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":313.5,"end":315.0,"channel":0,"text":["Yeah, I'll give you good recommendations."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":316.4,"end":317.7,"channel":0,"text":["Did you also water the plants?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":319.8,"end":320.9,"channel":0,"text":["Both. We have 1 over there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":321.8,"end":324.4,"channel":0,"text":["By the TV and also 1 in the window."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":326.6,"end":327.6,"channel":0,"text":["Yeah, yeah, yeah. Cool."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":331.8,"end":332.1,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":333.6,"end":333.8,"channel":0,"text":["Cool."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":334.8,"end":335.8,"channel":0,"text":["Okay, have a good day."]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":" google-asr@fake.co, 5","created_ago":"3 minutes","completed_by":5,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-24T10:10:53.168107Z","updated_at":"2024-09-24T10:14:19.814097Z","draft_created_at":null,"lead_time":1.711,"import_id":null,"last_action":null,"task":77,"project":6,"updated_by":5,"parent_prediction":null,"parent_annotation":null,"last_created_by":null}
/Users/joregan/Playing/hsi_google/hsi_4_0717_211_003_main.json
{"id":257,"result":[{"value":{"start":19.1,"end":19.6,"channel":0,"text":["Yep."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":25.3,"end":32.2,"channel":0,"text":["Yes, I will try. Let's see here. So we have a couch."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":32.9,"end":36.2,"channel":0,"text":["We have sofa table TV."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":39.0,"end":46.8,"channel":0,"text":["Another and a chair, those go really good together, the lamp and the armchair, I think they should be."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":48.1,"end":48.5,"channel":0,"text":["Together."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":50.0,"end":56.3,"channel":0,"text":["Is it almost looks like they're bought together and also that 1. I mean the table that the TV lies on"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":57.3,"end":58.8,"channel":0,"text":["Yeah, they should be together."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":61.2,"end":64.6,"channel":0,"text":["So, maybe we should start with just moving the lamp."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":65.7,"end":66.9,"channel":0,"text":["Next to the chair."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":68.7,"end":69.5,"channel":0,"text":["and uh,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":71.9,"end":73.1,"channel":0,"text":["I don't know about the"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":76.6,"end":81.1,"channel":0,"text":["Let me think, I don't know about the cow."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":84.8,"end":89.2,"channel":0,"text":["That you have 1, you have a big couch, big brown, and black couch."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":90.8,"end":91.1,"channel":0,"text":["Um,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":92.0,"end":92.5,"channel":0,"text":["You could."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":93.3,"end":97.8,"channel":0,"text":["Put like another fabric around it, because it looks quite old."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":98.9,"end":102.9,"channel":0,"text":["This brown and black Fabric and also, I don't know about the pillows."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":103.7,"end":108.4,"channel":0,"text":["I think maybe you should move it, the purple and white pillows to the armchair"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":109.8,"end":111.7,"channel":0,"text":["Cuz they don't really go together with that fabric."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":112.6,"end":112.7,"channel":0,"text":["So,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":116.7,"end":118.4,"channel":0,"text":["let me think."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":120.1,"end":121.8,"channel":0,"text":["Okay, so I think you should"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":123.2,"end":124.8,"channel":0,"text":["maybe take that armchair."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":125.8,"end":127.3,"channel":0,"text":["Put that over here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":128.8,"end":130.0,"channel":0,"text":["Put the pillows over there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":131.7,"end":133.0,"channel":0,"text":["Get rid of the panda, please."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":134.1,"end":136.1,"channel":0,"text":["and uh, then you move the"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":137.1,"end":151.0,"channel":0,"text":["table with a TV on it to this side instead because they have like that table, the lamp and the chair, they go together, nicely you take this sofa and put that on that wall instead."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":152.6,"end":159.8,"channel":0,"text":["Keep the plant over there because it, it will be nice. Oh, I know, uh, sorry the big plants. The big palm tree"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":161.0,"end":177.6,"channel":0,"text":["Uh, well actually, you can put that next to the other plant, the smaller plants, so you have them next to each other. That will be nice. And so, the couch goes over their recycling bin place, it somewhere else, like maybe kitchen or something. Because right now, it looks misplaced."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":179.0,"end":180.8,"channel":0,"text":["so, you have lamp armchair"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":182.0,"end":186.1,"channel":0,"text":["TV couch over there. This I don't know about that. Really?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":186.9,"end":188.5,"channel":0,"text":["It's kind of a strange furniture."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":191.3,"end":192.7,"channel":0,"text":["The 1 where the bosses are on."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":193.6,"end":195.8,"channel":0,"text":["At some sort of bookshelf, I guess."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":197.3,"end":198.9,"channel":0,"text":["Um, oh then there's"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":199.8,"end":202.2,"channel":0,"text":["the sofa table and the the rug,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":203.2,"end":206.3,"channel":0,"text":["well, I guess that has to go like, over there by the couch."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":208.0,"end":208.8,"channel":0,"text":["That would be nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":211.9,"end":216.2,"channel":0,"text":["Maybe an idea would be to put the shelves."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":217.1,"end":219.2,"channel":0,"text":["Over here like straight in front of the window."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":221.4,"end":226.5,"channel":0,"text":["Cuz then you will get light shining through and also the Light will be nice looking in the voses."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":227.2,"end":229.4,"channel":0,"text":["So you the colors would pop out."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":231.2,"end":232.3,"channel":0,"text":["That's a good idea, I think."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":235.8,"end":236.7,"channel":0,"text":["And then you have those."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":238.0,"end":239.5,"channel":0,"text":["Paintings or photos."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":241.0,"end":241.8,"channel":0,"text":["That maybe."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":243.0,"end":247.1,"channel":0,"text":["So, if the TV's there, that has to be moved because the TV will be there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":251.9,"end":254.7,"channel":0,"text":["Uh, the this old black and white 1."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":257.5,"end":258.8,"channel":0,"text":["It's night with them."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":260.5,"end":265.6,"channel":0,"text":["That it has a black frame that goes together well with the other furniture with black in them."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":266.9,"end":270.4,"channel":0,"text":["uh, but there's a TV there, so maybe"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":274.1,"end":285.9,"channel":0,"text":["Just move that along or wait, actually, that 1 is looks better with a couch. So place that painting above the couch over there, this 1 goes over there that wall"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":287.5,"end":288.5,"channel":0,"text":["Yeah, I think so too."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":294.0,"end":295.3,"channel":0,"text":["Yeah, it's very dark."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":296.7,"end":297.6,"channel":0,"text":["It is very dark."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":298.9,"end":300.3,"channel":0,"text":["And you have the lamp."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":301.5,"end":305.0,"channel":0,"text":["What did we say? Still there? That's right. Um,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":308.5,"end":309.6,"channel":0,"text":["it's very bright out here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":310.6,"end":312.2,"channel":0,"text":["Yeah, there's a lamp in the ceiling."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":314.1,"end":316.3,"channel":0,"text":["Maybe you should have a lamp in the ceiling here as well."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":319.2,"end":324.3,"channel":0,"text":["Maybe you can have like a similar 1. That makes the 2 rooms go together nicely."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":326.6,"end":327.2,"channel":0,"text":["Yeah. Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":329.0,"end":330.3,"channel":0,"text":["So then we have a plan, I think."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":333.8,"end":338.7,"channel":0,"text":["You're welcome. Good luck with your apartment and get rid of the T. Teddy bear. Get rid of"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":339.7,"end":339.9,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":" google-asr@fake.co, 5","created_ago":"3 minutes","completed_by":5,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-24T10:10:57.435859Z","updated_at":"2024-09-24T10:14:19.919295Z","draft_created_at":null,"lead_time":1.673,"import_id":null,"last_action":null,"task":78,"project":6,"updated_by":5,"parent_prediction":null,"parent_annotation":null,"last_created_by":null}
/Users/joregan/Playing/hsi_google/hsi_4_0717_222_002_main.json
{"id":258,"result":[{"value":{"start":29.6,"end":30.5,"channel":0,"text":["Lando. Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":31.1,"end":31.4,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":33.8,"end":34.8,"channel":0,"text":["Yeah, did you enjoy?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":39.4,"end":42.7,"channel":0,"text":["But you moved everything to a different place. It seems."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":44.8,"end":48.3,"channel":0,"text":["Well, I mean, that couch used to be over there and that couch used to be over there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":49.8,"end":56.0,"channel":0,"text":["I mean, sewists and also wait a minute. Once sofa was there. 1 was there and the chair was there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":57.6,"end":60.4,"channel":0,"text":["You have to help me change them around because I can't."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":66.6,"end":71.0,"channel":0,"text":["But I'm not interested in TV. I'm interested in sitting here and talking with my friends."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":73.5,"end":76.7,"channel":0,"text":["So, and also, uh, did something break while you're here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":84.9,"end":85.3,"channel":0,"text":["What?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":87.9,"end":89.9,"channel":0,"text":["Yeah, it is. There is it broken?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":93.9,"end":95.0,"channel":0,"text":["Yes, what happened with it?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":98.5,"end":100.5,"channel":0,"text":["It just fell off, why?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":105.6,"end":106.0,"channel":0,"text":["Hmm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":107.7,"end":108.1,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":109.7,"end":111.0,"channel":0,"text":["But how is the green 1 doing?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":117.1,"end":121.6,"channel":0,"text":["Okay, well you'll have to you won't get all of your deposit back then."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":122.8,"end":123.0,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":124.8,"end":126.5,"channel":0,"text":["oh, are you playing tennis so what"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":128.1,"end":131.1,"channel":0,"text":["There's a racket right here, right in the front of the TV."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":136.4,"end":141.6,"channel":0,"text":["Fun. And also that's your computer, right? Cuz I don't have a laptop like that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":143.6,"end":144.3,"channel":0,"text":["Could be."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":145.6,"end":148.2,"channel":0,"text":["Okay, if you're not certain, I can keep it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":150.1,"end":152.3,"channel":0,"text":["A lot of keys also, no keys."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":153.0,"end":154.0,"channel":0,"text":["And a watch."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":158.4,"end":162.8,"channel":0,"text":["Oh, oh God, maybe it's my old watch. I thought that was lost."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":164.7,"end":165.4,"channel":0,"text":["Oh, have you been there?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":169.3,"end":170.2,"channel":0,"text":["You have a paper over there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":171.7,"end":172.3,"channel":0,"text":["Yeah. Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":173.9,"end":174.8,"channel":0,"text":["Yeahs, do you get them?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":177.2,"end":178.7,"channel":0,"text":["Oh, I thought I"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":179.6,"end":184.4,"channel":0,"text":["said no to them. Now I'll have to pay for it. What's this old box doing here?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":187.5,"end":188.4,"channel":0,"text":["Oh, okay, cool."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":189.6,"end":192.8,"channel":0,"text":["So what is this a thick book you're reading or what?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":195.8,"end":197.9,"channel":0,"text":["This beautiful book. Thank you."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":199.1,"end":202.5,"channel":0,"text":["I think it works very well. There looks good with the rug."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":206.2,"end":213.9,"channel":0,"text":["But this is a bit. I mean, before you leave, please put the furniture back in order and these pillows, they're just lying around."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":215.9,"end":217.8,"channel":0,"text":["Did you also switch places?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":223.9,"end":224.5,"channel":0,"text":["Uh,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":226.6,"end":227.5,"channel":0,"text":["no, I want to."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":229.7,"end":231.5,"channel":0,"text":["This has to go back over there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":232.6,"end":240.7,"channel":0,"text":["Yeah, the old 1. I mean, this is a real classic and so is they're all classics. I like art as you've noticed,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":243.1,"end":244.4,"channel":0,"text":["Ah, yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":245.8,"end":246.6,"channel":0,"text":["Or else."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":252.9,"end":254.1,"channel":0,"text":["Yeah, they look hideous there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":255.1,"end":257.2,"channel":0,"text":["Please put them somewhere else. I don't know, maybe in the kitchen."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":258.3,"end":258.9,"channel":0,"text":["or maybe a"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":260.3,"end":264.9,"channel":0,"text":["by the door. I don't know. But they can't be here. This is a living room. This is for"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":266.0,"end":266.7,"channel":0,"text":["Happy times."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":270.9,"end":271.1,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":275.4,"end":279.5,"channel":0,"text":["The shallow Holmes book. Oh, that's not mine. I don't read that kind of literature."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":281.8,"end":283.1,"channel":0,"text":["Have you had a lot of friends over?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":285.6,"end":285.9,"channel":0,"text":["Oh,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":286.7,"end":289.3,"channel":0,"text":["Okay, I thought I said that was forbidden."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":291.6,"end":293.8,"channel":0,"text":["Big parties. Yeah I said no big parties."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":295.3,"end":302.4,"channel":0,"text":["Tea parties. I thought it's a big parties. Tea parties are okay then you think someone brought the shellac Holmes book"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":305.3,"end":308.5,"channel":0,"text":["Oh, that's nice. I would like to have a book club."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":310.2,"end":312.2,"channel":0,"text":["Yeah. Well, apart from that, I think it looks."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":313.6,"end":314.3,"channel":0,"text":["Things. Look nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":315.9,"end":316.0,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":317.7,"end":318.0,"channel":0,"text":["Thank you."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":321.6,"end":321.9,"channel":0,"text":["Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":" google-asr@fake.co, 5","created_ago":"3 minutes","completed_by":5,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-24T10:11:02.556462Z","updated_at":"2024-09-24T10:14:20.030224Z","draft_created_at":null,"lead_time":1.705,"import_id":null,"last_action":null,"task":79,"project":6,"updated_by":5,"parent_prediction":null,"parent_annotation":null,"last_created_by":null}
/Users/joregan/Playing/hsi_google/hsi_4_0717_222_003_main.json
{"id":259,"result":[{"value":{"start":10.5,"end":11.6,"channel":0,"text":["I must say."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":13.1,"end":15.1,"channel":0,"text":["that the light from that window, how it"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":17.1,"end":19.2,"channel":0,"text":["How it hits the floor? It's beautiful."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":20.0,"end":23.3,"channel":0,"text":["I think you should take everything away from that window and just"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":24.4,"end":29.4,"channel":0,"text":["That could be the center of the room. Really see how nicely it hits the floor."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":30.3,"end":31.3,"channel":0,"text":["Makes a shadow there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":32.9,"end":35.5,"channel":0,"text":["so clear from the bins and the chair,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":37.2,"end":37.5,"channel":0,"text":["And maybe."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":38.8,"end":43.3,"channel":0,"text":["I think you should actually take this so far and that's so from. Put them in the corner there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":44.6,"end":46.4,"channel":0,"text":["Yeah, like a big L sofa."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":47.4,"end":52.1,"channel":0,"text":["And then maybe that chair could be like, over in that corner just to open up that space."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":53.8,"end":58.2,"channel":0,"text":["and then the rug and the small table can go over here and sit like"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":60.0,"end":64.1,"channel":0,"text":["I don't know what this is. I think maybe that should go the, the weird."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":65.7,"end":68.7,"channel":0,"text":["Yeah, it is. Is it a desk? It's so high to be a desk."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":73.8,"end":78.4,"channel":0,"text":["Okay, I see well, maybe the work Corner, could be over here instead."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":79.9,"end":90.1,"channel":0,"text":["Uh, you can put like that small desk and the laptop here and have maybe a small chair, that could be so small that you can slide it under the desk when you're not using it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":93.7,"end":94.2,"channel":0,"text":["Oh,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":95.3,"end":96.4,"channel":0,"text":["but that's stressful."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":97.9,"end":100.6,"channel":0,"text":["Working and watching TV at the same time."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":101.6,"end":103.3,"channel":0,"text":["okay, well maybe then you should"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":107.7,"end":113.1,"channel":0,"text":["What did we say about this? Well, nothing maybe. Well, of course, if if the sofas are over there"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":114.3,"end":115.7,"channel":0,"text":["then the TV should be over here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":116.7,"end":116.9,"channel":0,"text":["and,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":119.0,"end":119.8,"channel":0,"text":["is this like,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":120.9,"end":123.5,"channel":0,"text":["turnable, can you turn it, the TV"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":125.1,"end":132.2,"channel":0,"text":["maybe or maybe you can get 1 of those, you know, they can I I think you can put it on the wall and have 1 of those like things you can pull out and"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":133.8,"end":134.5,"channel":0,"text":["Turn a little."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":136.8,"end":141.1,"channel":0,"text":["Cuz then when you sit here and you're working, you can have the TV a bit like this."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":142.4,"end":145.7,"channel":0,"text":["And if you're sitting over there watching TV, you can have it a bit like that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":147.0,"end":147.7,"channel":0,"text":["That sounds good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":159.1,"end":160.7,"channel":0,"text":["Or where the paintings should be."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":162.4,"end":165.8,"channel":0,"text":["Um well, we have a beautiful fun go over here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":167.3,"end":170.8,"channel":0,"text":["It's so beautiful. I really love that painting."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":173.5,"end":178.8,"channel":0,"text":["I don't think it goes very well together with the old Farmers. I don't, I don't remember what that 1's called."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":179.6,"end":180.5,"channel":0,"text":["it's something with, like,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":181.7,"end":183.5,"channel":0,"text":["It's not pilgrims but it's something. It's some"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":185.0,"end":191.3,"channel":0,"text":["Cuz they're so angry looking. I mean, they're funny in a way, but maybe it would be better to have those in the kitchen."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":193.4,"end":194.0,"channel":0,"text":["And this is also."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":195.1,"end":200.1,"channel":0,"text":["Would they go together better? I would say cuz they're both old and sort of classic motives."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":201.0,"end":207.6,"channel":0,"text":["So maybe, but this does not work well together, the old Fang go and the modern TV."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":208.7,"end":221.7,"channel":0,"text":["So I'm thinking better way would be to place the couches as we said over there, you have 1 of the paintings over that couch and the other painting over the other couch, preferably the big 1 over the on that wall."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":223.2,"end":224.7,"channel":0,"text":["And the smaller 1 on that wall."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":227.8,"end":228.5,"channel":0,"text":["And remove that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":229.7,"end":233.3,"channel":0,"text":["And I think the bins, they will have to be somewhere else."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":236.0,"end":238.1,"channel":0,"text":["The blue bin and the red bin."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":239.4,"end":240.5,"channel":0,"text":["Now, they're a bit."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":241.5,"end":243.4,"channel":0,"text":["Misplaced. I feel"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":245.0,"end":252.3,"channel":0,"text":["Or maybe if you want to keep 1 then keep the red 1 cuz that goes well together with with the rug and you can have that next to your desk."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":254.6,"end":257.9,"channel":0,"text":["No, no, no. The lamp cannot be here. It's too weird."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":258.9,"end":260.1,"channel":0,"text":["I'm sorry, it just is"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":261.2,"end":266.1,"channel":0,"text":["But maybe since we said, we were going to have the couch over in that corner, maybe that's a good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":267.1,"end":271.8,"channel":0,"text":["Like place to have a lamp next to the couch so you can sit and read in your couch, right."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":280.2,"end":284.8,"channel":0,"text":["Oh, this 1, which is, which is about, oh, that box. No, but that looks random."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":287.9,"end":288.2,"channel":0,"text":["Of course."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":289.4,"end":290.4,"channel":0,"text":["But what you could do?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":292.0,"end":293.4,"channel":0,"text":["I think it should buy a basket."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":295.4,"end":301.3,"channel":0,"text":["Yeah, and it has all a basket with handles and you can store it, but it also looks a bit nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":302.2,"end":306.7,"channel":0,"text":["But I know what you mean. It's good to be able to stuff things away, and I don't know, just"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":307.5,"end":308.4,"channel":0,"text":["I, I would"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":309.1,"end":316.3,"channel":0,"text":["Clean up a bit so you don't have tennis rackets and books lying around and watches and stuff. Just so the surfaces are clean."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":319.4,"end":324.7,"channel":0,"text":["Yeah, that's true. Watch. And the tennis racket next to the TV, I mean,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":327.2,"end":328.4,"channel":0,"text":["Put it so. So"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":330.3,"end":331.9,"channel":0,"text":["for opening to disaster."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":334.6,"end":339.1,"channel":0,"text":["And then you have a small table over there and you have some art, maybe I think the statues"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":341.2,"end":344.0,"channel":0,"text":["put them all or the both of them up on the"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":345.4,"end":346.3,"channel":0,"text":["mantel piece."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":348.0,"end":364.1,"channel":0,"text":["That would be nice and also maybe together with this very classic book and you can put the book and they put a statue on the book that looks nice and another statue next to it and the plant looks great there. So just keep that and that will be a sort of like an"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":364.9,"end":366.1,"channel":0,"text":["artsy mental piece."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":368.1,"end":368.5,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":370.4,"end":376.5,"channel":0,"text":["Well, I think you can buy make this to a very light and beautiful and cozy room at the same time."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":381.0,"end":386.7,"channel":0,"text":["Oh God you have 2 tables as well. Your newspapers. Well"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":388.1,"end":389.1,"channel":0,"text":["maybe in the desk."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":390.3,"end":392.2,"channel":0,"text":["You have a drawer in your desk."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":393.4,"end":394.9,"channel":0,"text":["But it is also nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":396.1,"end":409.0,"channel":0,"text":["Hmm, since you have that couch, and if you're having the couch in the corner, you have a lamp there to have somewhere to store newspapers, right? Next to it. So you can have a read in your couch, maybe you should have to get something or you can."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":410.6,"end":411.2,"channel":0,"text":["Maybe have."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":412.5,"end":415.0,"channel":0,"text":["no, I like that table more the, the bright"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":415.7,"end":416.5,"channel":0,"text":["Wooden 1."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":417.2,"end":422.7,"channel":0,"text":["That the other 1 wouldn't want is so dark. So I think maybe it makes it very dark in here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":424.3,"end":424.4,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":425.3,"end":427.7,"channel":0,"text":["So, keep the couch with a bright."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":428.4,"end":430.6,"channel":0,"text":["Wooden table next to it and the lamp."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":432.3,"end":435.1,"channel":0,"text":["In that corner, and it will be your reading corner."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":436.8,"end":437.0,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":439.6,"end":441.1,"channel":0,"text":["You're welcome, good luck."]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":" google-asr@fake.co, 5","created_ago":"3 minutes","completed_by":5,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-24T10:11:08.705221Z","updated_at":"2024-09-24T10:14:20.134247Z","draft_created_at":null,"lead_time":1.702,"import_id":null,"last_action":null,"task":80,"project":6,"updated_by":5,"parent_prediction":null,"parent_annotation":null,"last_created_by":null}
/Users/joregan/Playing/hsi_google/hsi_4_0717_227_002_main.json
{"id":260,"result":[{"value":{"start":5.8,"end":6.7,"channel":0,"text":["Was it lost?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":11.0,"end":12.7,"channel":0,"text":["Maybe I walked too much."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":16.0,"end":16.7,"channel":0,"text":["Oh, okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":27.4,"end":27.7,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":31.4,"end":31.6,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":32.8,"end":33.0,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":40.0,"end":40.3,"channel":0,"text":["Hm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":42.7,"end":43.4,"channel":0,"text":["Beautiful place."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":45.4,"end":45.7,"channel":0,"text":["Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":46.6,"end":48.9,"channel":0,"text":["What would you like to help to have help with?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":52.7,"end":53.0,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":56.5,"end":57.7,"channel":0,"text":["Of course, I understand."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":59.1,"end":64.9,"channel":0,"text":["Well, I'm thinking maybe we'll, we should just turn this. The big couch, turn it this way."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":66.2,"end":67.4,"channel":0,"text":["Have these as they are."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":68.7,"end":74.4,"channel":0,"text":["So then the focus is that people can talk to each other, over the table and"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":78.6,"end":79.6,"channel":0,"text":["The pillows."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":82.2,"end":90.7,"channel":0,"text":["Well that blue 1 looks a bit odd, both of those look a bit odd, I think maybe that blue 1 should be in that chair. So the chairs have pillows but not the couch."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":91.9,"end":92.2,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":93.1,"end":94.1,"channel":0,"text":["and then I'm thinking,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":95.3,"end":98.3,"channel":0,"text":["This is beautiful here. I think with a table and everything."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":100.2,"end":103.5,"channel":0,"text":["Yeah, the chandelier and the table under the chandelier."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":104.1,"end":107.1,"channel":0,"text":["With it's nice and spacious, which is beautiful."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":108.5,"end":109.5,"channel":0,"text":["and I'm thinking,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":112.1,"end":112.4,"channel":0,"text":["hm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":113.8,"end":114.1,"channel":0,"text":["Maybe."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":115.1,"end":118.3,"channel":0,"text":["Those lamps should change places with each other."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":120.3,"end":121.2,"channel":0,"text":["Uh, there's"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":122.4,"end":125.2,"channel":0,"text":["a high lamp with a white lamp."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":126.1,"end":131.0,"channel":0,"text":["Thing and there's a 1 with a green cuz that's a that's a darker lamp."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":131.8,"end":133.6,"channel":0,"text":["That would go better over there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":134.4,"end":136.6,"channel":0,"text":["And that lighter 1 would go better over there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":138.4,"end":138.7,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":140.4,"end":143.2,"channel":0,"text":["And there's a lot of these white cupboards."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":144.2,"end":148.9,"channel":0,"text":["I think maybe there's 1 too many cuz there's 1 over there as well. So I'm thinking"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":150.8,"end":152.2,"channel":0,"text":["Nobody think, maybe you should."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":153.5,"end":154.5,"channel":0,"text":["Get rid of that 1."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":155.2,"end":158.6,"channel":0,"text":["the 1 in the corner, the white cupboard, and you move that art,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":160.2,"end":162.4,"channel":0,"text":["You divide it into the other ones."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":163.2,"end":168.3,"channel":0,"text":["So next to the dining room table, it's a free space."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":169.3,"end":171.4,"channel":0,"text":["And then, like the art can be more over here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":173.9,"end":177.0,"channel":0,"text":["And also if that couch is like that, it would be like"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":178.0,"end":186.6,"channel":0,"text":["and I think maybe you should move those white things, a little bit that way, the white cupboards. So the couch will have the same line as they do."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":187.6,"end":188.1,"channel":0,"text":["and also,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":189.1,"end":194.3,"channel":0,"text":["A super nice thing. With having the couch, this direction is you can sit and watch the outside."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":197.1,"end":201.4,"channel":0,"text":["cuz right now there's no place where you automatically look out when you're sitting,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":203.1,"end":207.3,"channel":0,"text":["And what what's this box doing here? Is that supposed to be there in the middle?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":209.2,"end":215.4,"channel":0,"text":["Okay, that's why. And please don't leave keys on the table. That's good luck. I mean, bad luck for you."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":217.2,"end":221.8,"channel":0,"text":["Beautiful TV. Great. I can come by later and watch something. Perhaps."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":223.9,"end":227.2,"channel":0,"text":["so, but I think basically you've done a beautiful job"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":228.5,"end":228.8,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":230.5,"end":230.8,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":232.1,"end":232.6,"channel":0,"text":["Good luck."]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":" google-asr@fake.co, 5","created_ago":"3 minutes","completed_by":5,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-24T10:11:13.475564Z","updated_at":"2024-09-24T10:14:20.247139Z","draft_created_at":null,"lead_time":1.555,"import_id":null,"last_action":null,"task":81,"project":6,"updated_by":5,"parent_prediction":null,"parent_annotation":null,"last_created_by":null}
/Users/joregan/Playing/hsi_google/hsi_4_0717_227_003_main.json
{"id":261,"result":[{"value":{"start":25.9,"end":26.5,"channel":0,"text":["Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":27.8,"end":28.2,"channel":0,"text":["so,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":29.3,"end":30.1,"channel":0,"text":["why?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":30.8,"end":32.3,"channel":0,"text":["Why is the furniture like this?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":33.2,"end":34.6,"channel":0,"text":["It used to be the couch was over here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":36.4,"end":37.1,"channel":0,"text":["Chairs."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":41.5,"end":42.5,"channel":0,"text":["You're Frozen now."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":43.4,"end":44.2,"channel":0,"text":["No, no, you're not."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":48.4,"end":50.8,"channel":0,"text":["I really want you to move them back as they were."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":51.5,"end":52.4,"channel":0,"text":["Did anything break?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":56.7,"end":61.2,"channel":0,"text":["Yeah, but there's something missing over there. There used to be something on top of that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":65.6,"end":69.8,"channel":0,"text":["Yes, there's supposed to be another vase on top there. Did you break it?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":73.2,"end":75.7,"channel":0,"text":["Oh okay. Well, please replace it later. Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":77.0,"end":80.0,"channel":0,"text":["and I don't like papers running around like this, so,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":81.3,"end":82.4,"channel":0,"text":["Is that your box?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":83.4,"end":84.1,"channel":0,"text":["What's this box?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":85.6,"end":94.8,"channel":0,"text":["Okay, moving out box. Cool. So take your paper and your box and this is something new. The weird I don't even know what it is. It is it a bin?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":96.2,"end":98.5,"channel":0,"text":["No, I don't know. It looks like it has a hole in the middle."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":101.5,"end":102.1,"channel":0,"text":["I don't think that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":103.5,"end":108.3,"channel":0,"text":["Place very nicely there. So you can also bring that with you if you're kind, thank you."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":109.5,"end":111.5,"channel":0,"text":["So in this is too heavy for me to move."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":114.3,"end":115.7,"channel":0,"text":["And I hope it hasn't made too much."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":117.8,"end":120.3,"channel":0,"text":["Like holes in the rock, you know, that can happen."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":122.3,"end":124.7,"channel":0,"text":["and if it has, I'll have to take it from your"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":125.6,"end":126.9,"channel":0,"text":["position, I'm afraid."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":128.9,"end":130.2,"channel":0,"text":["Have you been going through?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":137.9,"end":140.8,"channel":0,"text":["And those blue pillows. Are they from you?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":142.8,"end":146.8,"channel":0,"text":["The blue pillows. Ooh, I don't think so, was it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":147.7,"end":149.3,"channel":0,"text":["What's this credit card doing here?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":152.9,"end":153.6,"channel":0,"text":["Covers."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":156.1,"end":166.0,"channel":0,"text":["And the keys, all the movers are those, your random things lying around? It looks messy."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":168.8,"end":173.8,"channel":0,"text":["So, when you clean the, the chandelier, did you use that soft thing to clean? Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":176.4,"end":178.4,"channel":0,"text":["Well, that's great. Then."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":180.1,"end":181.5,"channel":0,"text":["I'm glad you enjoyed your stay."]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":" google-asr@fake.co, 5","created_ago":"3 minutes","completed_by":5,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-24T10:11:17.707022Z","updated_at":"2024-09-24T10:14:20.342277Z","draft_created_at":null,"lead_time":1.417,"import_id":null,"last_action":null,"task":82,"project":6,"updated_by":5,"parent_prediction":null,"parent_annotation":null,"last_created_by":null}
/Users/joregan/Playing/hsi_google/hsi_4_0717_227_004_main.json
{"id":262,"result":[{"value":{"start":3.2,"end":3.7,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":18.3,"end":18.7,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":19.8,"end":20.7,"channel":0,"text":["Isn't it beautiful?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":22.2,"end":24.0,"channel":0,"text":["and I'm thinking, maybe,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":25.3,"end":27.6,"channel":0,"text":["The couch should be turned this."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":29.0,"end":29.4,"channel":0,"text":["Doors."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":31.2,"end":31.6,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":32.8,"end":33.1,"channel":0,"text":["and also,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":35.8,"end":36.7,"channel":0,"text":["Let me just walk."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":37.1,"end":39.0,"channel":0,"text":["and of course, whenever you want"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":40.6,"end":41.2,"channel":0,"text":["No, it's not."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":43.5,"end":45.3,"channel":0,"text":["They slide sliding doors."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":46.5,"end":48.7,"channel":0,"text":["And have you seen my super big painting?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":50.6,"end":50.9,"channel":0,"text":["Work."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":55.0,"end":56.4,"channel":0,"text":["What's a mistake?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":60.8,"end":63.2,"channel":0,"text":["No, it's it's um, they're from the same collection."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":65.7,"end":69.1,"channel":0,"text":["Maybe I should put them next to each other instead."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":70.5,"end":72.9,"channel":0,"text":["See, maybe they should be on that wall."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":74.1,"end":74.8,"channel":0,"text":["To each other."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":80.6,"end":81.7,"channel":0,"text":["Maybe on."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":82.4,"end":84.5,"channel":0,"text":["1, each side of the Shelf there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":85.5,"end":86.5,"channel":0,"text":["Maybe that would be really cool."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":87.3,"end":89.2,"channel":0,"text":["It might look like a mistake."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":92.1,"end":94.9,"channel":0,"text":["Ooh, I don't like the blue pillows them there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":98.8,"end":102.9,"channel":0,"text":["Just no pillows. There's it's like nothing else in this room. Has that color."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":104.4,"end":105.1,"channel":0,"text":["It doesn't fit in."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":107.7,"end":109.3,"channel":0,"text":["I don't know, I'll just throw them out."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":110.7,"end":112.3,"channel":0,"text":["But what do you think about my how? I"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":114.6,"end":115.2,"channel":0,"text":["Put my art out."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":124.4,"end":125.7,"channel":0,"text":["And the lion there from."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":127.1,"end":128.4,"channel":0,"text":["African art."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":129.1,"end":130.8,"channel":0,"text":["I got them there when I was there, and it was"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":131.7,"end":135.6,"channel":0,"text":["An auction. It was my first auction, it was so exciting and I won them."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":136.5,"end":144.2,"channel":0,"text":["Yeah, that was fun and that's a Swedish artist with a with a woman's body. She works a lot with women's bodies shapes and"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":145.0,"end":148.4,"channel":0,"text":["Different poses such and that feels good to buy."]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":" google-asr@fake.co, 5","created_ago":"2 minutes","completed_by":5,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-24T10:11:22.371292Z","updated_at":"2024-09-24T10:14:20.443096Z","draft_created_at":null,"lead_time":1.444,"import_id":null,"last_action":null,"task":83,"project":6,"updated_by":5,"parent_prediction":null,"parent_annotation":null,"last_created_by":null}
tmap = {}
count = 99
for task in mapping:
    tmap[task] = count
    count += 1
from pathlib import Path

for file in Path(input_dir).glob("*.json"):
    wavfile = file.stem + ".wav"
    if wavfile in mapping:
        print(wavfile, mapping[wavfile])
hsi_5_0718_210_002_main.wav 88
hsi_5_0718_210_003_main.wav 89
hsi_5_0718_211_003_main.wav 91
hsi_5_0718_222_003_main.wav 93
hsi_5_0718_210_001_main.wav 87
hsi_5_0718_211_002_main.wav 90