TextGrid to Label Studio
Via the API
• 76 min read
def slurpfile(filename) -> str:
with open(filename) as inf:
return inf.read().strip()
host = "http://130.237.3.107:8080/api/"
api_token: str = slurpfile("label_studio_mine")
input_dir = "/Users/joregan/Playing/hsi_ctmedit/textgrid/"
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 6")
7
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("Speaker 3")
1
tasks = get_tasks(8)
mapping = index_task_filestem_to_id(tasks)
mapping
{'hsi_7_0719_209_001_main.wav': 107, 'hsi_7_0719_209_002_main.wav': 108, 'hsi_7_0719_209_003_main.wav': 109, 'hsi_7_0719_210_001_main.wav': 110, 'hsi_7_0719_210_002_main.wav': 111, 'hsi_7_0719_210_003_main.wav': 112, 'hsi_7_0719_211_002_main.wav': 113, 'hsi_7_0719_211_004_main.wav': 114, 'hsi_7_0719_222_002_main.wav': 115, 'hsi_7_0719_222_004_main.wav': 116, 'hsi_7_0719_227_002_main.wav': 117, 'hsi_7_0719_227_003_main.wav': 118}
import json
from praatio import textgrid
noises = ["smack", "spn", "mic_click", "labial_trill", "sniff", "click", "vocal_clicks", "throat_noise", "vocal_noise", "lip_trill", "lip_noise", "noise", "flapping_noises", "cough", "grumble", "skip", "creak", "s"]
breath = ["breath", "inhale", "exhale", "sigh", "breath_noise", "breath_noises", "blow", "suck"]
laugh = ["laugh", "laughter"]
labels = {}
for noise in noises:
labels[noise] = "Noise"
for noise in laugh:
labels[noise] = "Laughter"
for noise in breath:
labels[noise] = "Breath"
def tg_to_result(tgfile):
outputs = []
tg = textgrid.openTextgrid(tgfile, False)
tiername = "utterances"
if not tiername in tg.tierNames:
tiername = "words"
tier = tg.getTier(tiername)
for entry in tier.entries:
text = entry.label.strip()
if text == "":
continue
label = "Speech"
if text.endswith("crosstalk]"):
label = "Cross-talk"
if text.startswith("[") and text.endswith("]"):
text = text[1:-1]
elif text.startswith("[") and text.endswith("]") and text[1:-1] in labels:
label = labels[text[1:-1]]
text = text[1:-1]
segment = {
"value": {
"start": entry.start,
"end": entry.end,
"channel": 0,
"labels": [label]
},
"from_name": "labels",
"to_name": "audio",
"type": "labels",
}
rec = {
"value": {
"start": entry.start,
"end": entry.end,
"channel": 0,
"text": [text]
},
"from_name": "transcription",
"to_name": "audio",
"type": "textarea",
}
outputs.append(segment)
outputs.append(rec)
return outputs
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_6_0718_211_001_main.TextGrid"
data = tg_to_result(file)
r = post_results(229, 101, 7, data)
print(r.text)
{"id":229,"result":[{"value":{"start":10.504962206088036,"end":11.022981308483644,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":10.504962206088036,"end":11.022981308483644,"channel":0,"text":["Or..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":14.416670556229224,"end":15.485915113738105,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":14.416670556229224,"end":15.485915113738105,"channel":0,"text":["Yeah, yeah, yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":15.738283394392376,"end":16.243019955700916,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":15.738283394392376,"end":16.243019955700916,"channel":0,"text":["Ah yeah"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":16.317896740469397,"end":18.30363663298589,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":16.317896740469397,"end":18.30363663298589,"channel":0,"text":["New apartment, new iPhone, you see that?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":18.739,"end":21.56876428079117,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":18.739,"end":21.56876428079117,"channel":0,"text":["It's the iPhone, uh, iPhone twenty eighty."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":22.79662802564966,"end":25.260539397300562,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":22.79662802564966,"end":25.260539397300562,"channel":0,"text":["Yeah, yeah, yeah, it's, uh, it's from the future."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":25.99935835281453,"end":30.367708216541544,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":25.99935835281453,"end":30.367708216541544,"channel":0,"text":["It's pretty, pretty nice, pretty nice. Yeah, I'm still, don't, don't mind these boxes here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":30.966072530074488,"end":32.719367953567314,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":30.966072530074488,"end":32.719367953567314,"channel":0,"text":["Yeah, because I'm still, I'm still moving in."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":33.70891726455379,"end":34.57228243521314,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":33.70891726455379,"end":34.57228243521314,"channel":0,"text":["Um..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":36.082910044087086,"end":42.434405685845775,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":36.082910044087086,"end":42.434405685845775,"channel":0,"text":["Yeah, yeah, yeah. Uh... Sit down next, you can sit, you can sit, [spn] you can take a seat on my couch next to Mr. Fluffaluffagus."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":46.52647984375678,"end":50.84735285311225,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":46.52647984375678,"end":50.84735285311225,"channel":0,"text":["Uh, no, no, that's, that's, uh, that's my, that's my friend."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":51.594635887959356,"end":51.92669941513602,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":51.594635887959356,"end":51.92669941513602,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":52.51113122296697,"end":55.68565854277594,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":52.51113122296697,"end":55.68565854277594,"channel":0,"text":["He's, he's, he just happens to be a stuffed, stuffed bear."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":57.02200696360008,"end":57.73926418230169,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":57.02200696360008,"end":57.73926418230169,"channel":0,"text":["Oh, that guy?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":58.92141033905064,"end":62.257150960694034,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":58.92141033905064,"end":62.257150960694034,"channel":0,"text":["Uh, yeah, I don't know where he came from. He just showed up one day."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":62.43387115088461,"end":65.59452950751917,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":62.43387115088461,"end":65.59452950751917,"channel":0,"text":["Yeah, they're, they're not related. I mean, they're both bears. They're not, I don't,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":66.3639289300022,"end":68.83812718977595,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":66.3639289300022,"end":68.83812718977595,"channel":0,"text":["Yeah I, I'm not sure. It's kind of..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":69.92065428837189,"end":74.89156873403465,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":69.92065428837189,"end":74.89156873403465,"channel":0,"text":["He kind of creeps me out, actually. I haven't haven't touched that that chair in like uh in like a year."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":75.51489197582376,"end":78.9617113879176,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":75.51489197582376,"end":78.9617113879176,"channel":0,"text":["Um... I know I've only moved in, but I feel like I'm not going to touch it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":82.08981335644943,"end":84.3279215296202,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":82.08981335644943,"end":84.3279215296202,"channel":0,"text":["You can take it, yeah. Uh. Yeah, you could..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":84.57364853973093,"end":88.143,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":84.57364853973093,"end":88.143,"channel":0,"text":["If you can touch him, I'm just, I'm just, yeah. He's just..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":88.4974665867845,"end":90.21755565755966,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":88.4974665867845,"end":90.21755565755966,"channel":0,"text":["He gives me the creeps, so."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":96.17786630186475,"end":96.94161241437111,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":96.17786630186475,"end":96.94161241437111,"channel":0,"text":["at some point."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":99.38322251477823,"end":104.28531502412869,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":99.38322251477823,"end":104.28531502412869,"channel":0,"text":["Uh yeah. Yeah, yeah, yeah. So this is for my new, uh s- see this guy here, that red one?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":104.47791186989116,"end":106.04525171816505,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":104.47791186989116,"end":106.04525171816505,"channel":0,"text":["That's for my Cybertruck, yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":109.41182123291297,"end":116.57074111162622,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":109.41182123291297,"end":116.57074111162622,"channel":0,"text":["Uh uh... Outside, you can see out this window, right? We're on the beautiful streets of Paris."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":117.4498298255134,"end":120.83023653217191,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":117.4498298255134,"end":120.83023653217191,"channel":0,"text":["Uh and I park it right under the the Eiffel Tower."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":121.15809979094573,"end":124.99879362876925,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":121.15809979094573,"end":124.99879362876925,"channel":0,"text":["Yeah, I have a special executive uh parking spot."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":125.78712890231603,"end":132.32640292808313,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":125.78712890231603,"end":132.32640292808313,"channel":0,"text":["Yeah, because I'm actually, uh I moved here because I'm the new president of France right aft- after the snap elections."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":132.88788350005547,"end":133.51880420169115,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":132.88788350005547,"end":133.51880420169115,"channel":0,"text":["Uh..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":134.11414109099587,"end":142.92998141414859,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":134.11414109099587,"end":142.92998141414859,"channel":0,"text":["They were looking for a new president because Macron is just, you know, so totally effed in the bum and they were like, they thought I'd be the per- I'd be the perfect candidate."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":143.70095521928585,"end":144.35785458100827,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":143.70095521928585,"end":144.35785458100827,"channel":0,"text":["Wouldn't you agree?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":151.50998007683376,"end":152.50617065836377,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":151.50998007683376,"end":152.50617065836377,"channel":0,"text":["Exactly."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":157.99272674680887,"end":165.89426431095896,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":157.99272674680887,"end":165.89426431095896,"channel":0,"text":["Yeah, it's it's it's like the it's like the French [fi]. You got the blue and the red and the yellow one. That's at-... It was it was it was messed up. Eh I..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":168.9326007997172,"end":170.4518361823792,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":168.9326007997172,"end":170.4518361823792,"channel":0,"text":["Exactly, exactly."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":170.6510742986852,"end":176.45418702595074,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":170.6510742986852,"end":176.45418702595074,"channel":0,"text":["The yellow is going to stand for uh butter that we put on our baguettes. Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":179.53880517153144,"end":181.6440879338315,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":179.53880517153144,"end":181.6440879338315,"channel":0,"text":["Uh... As you can see here, I have a nice"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":182.235161012206,"end":182.73989757351453,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":182.235161012206,"end":182.73989757351453,"channel":0,"text":["Uh."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":183.60990401471742,"end":190.10533738580287,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":183.60990401471742,"end":190.10533738580287,"channel":0,"text":["A photograph, right, of the uh, see those two uh [smack] uh blimps, right?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":190.20576893880423,"end":193.95669729685417,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":190.20576893880423,"end":193.95669729685417,"channel":0,"text":["Those are those are two zeppelins I've... they've been mashed together."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":194.66873451532234,"end":199.2361376117475,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":194.66873451532234,"end":199.2361376117475,"channel":0,"text":["Uh this is uh the Heis- uh [smack] Hindenburg two point oh, yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":204.64241203158295,"end":206.24959950311802,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":204.64241203158295,"end":206.24959950311802,"channel":0,"text":["Ah [smack] this, this like drawing thing?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":207.16609483812564,"end":211.16840351626314,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":207.16609483812564,"end":211.16840351626314,"channel":0,"text":["Yeah, uh I don't know."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":212.14270995763124,"end":213.7273321391847,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":212.14270995763124,"end":213.7273321391847,"channel":0,"text":["Honestly, uh..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":215.47522267883627,"end":219.95709233515447,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":215.47522267883627,"end":219.95709233515447,"channel":0,"text":["Like it's it's been a lot of work eh as th- as the new president of France."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":220.50831779026774,"end":224.96343748080403,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":220.50831779026774,"end":224.96343748080403,"channel":0,"text":["And some some of these things, thes- they just like pop up and over like that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":225.35490267565666,"end":229.778607051001,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":225.35490267565666,"end":229.778607051001,"channel":0,"text":["The bear, that thing, they just they just they just they just show up."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":229.9579213556764,"end":235.970727804855,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":229.9579213556764,"end":235.970727804855,"channel":0,"text":["And I don't know if they're like if I'm taking bribes and I'm just not remembering or or what. But..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":240.04317156237116,"end":240.8766510155846,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":240.04317156237116,"end":240.8766510155846,"channel":0,"text":["Yeah, yeah, yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":240.8766510155846,"end":242.139,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":240.8766510155846,"end":242.139,"channel":0,"text":["That... that's what I tell myself."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":242.16496660862086,"end":245.49760835375238,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":242.16496660862086,"end":245.49760835375238,"channel":0,"text":["I tell myself, I'm not, I'm not accepting bribes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":246.2023042979936,"end":246.72032340038922,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":246.2023042979936,"end":246.72032340038922,"channel":0,"text":["I'm..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":247.9592857133916,"end":252.3935302101495,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":247.9592857133916,"end":252.3935302101495,"channel":0,"text":["I'm, I'm, I'm culturally uh... enriching myself."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":252.92797070408574,"end":253.25339296071888,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":252.92797070408574,"end":253.25339296071888,"channel":0,"text":["Hmm..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":253.39618027740485,"end":253.73488507512505,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":253.39618027740485,"end":253.73488507512505,"channel":0,"text":["Hmm..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":253.85608826254455,"end":254.17154861336238,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":253.85608826254455,"end":254.17154861336238,"channel":0,"text":["Hmm..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":254.2097359189877,"end":254.54356954948983,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":254.2097359189877,"end":254.54356954948983,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":255.607,"end":257.1884744367325,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":255.607,"end":257.1884744367325,"channel":0,"text":["That, that television too."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":257.29187982584,"end":265.2451778919915,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":257.29187982584,"end":265.2451778919915,"channel":0,"text":["Yeah. That... That's a piece of art, right? Wouldn't you, wouldn't you agree, wouldn't you agree, that's that if someone were... were to accept such a thing... as the French president,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":265.73995254748473,"end":267.58534160042245,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":265.73995254748473,"end":267.58534160042245,"channel":0,"text":["It's not accepting a bribe."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":267.7314495523802,"end":271.72404955799306,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":267.7314495523802,"end":271.72404955799306,"channel":0,"text":["It's it's getting art so that it can be added to the Louvre at a later date."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":277.5515390159174,"end":285.04283766777166,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":277.5515390159174,"end":285.04283766777166,"channel":0,"text":["The te-? No, no, no. This... because it's... it it looks outdated, but that's... it... but [smack] it it's very, it's it's very uh..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":285.9194853795181,"end":287.24131584472224,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":285.9194853795181,"end":287.24131584472224,"channel":0,"text":["Yeah, it's it's not."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":287.24131584472224,"end":291.20155425362583,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":287.24131584472224,"end":291.20155425362583,"channel":0,"text":["It's it's it's it's brand new. It it just has it's... has a retro feel, right?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":291.2247987005282,"end":292.79859596866754,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":291.2247987005282,"end":292.79859596866754,"channel":0,"text":["Because it's a new thing, you know like but like"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":292.82848168611343,"end":295.2988504776299,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":292.82848168611343,"end":295.2988504776299,"channel":0,"text":["People, they buy eh like record players and stuff, right?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":296.4185405571564,"end":301.85314102672436,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":296.4185405571564,"end":301.85314102672436,"channel":0,"text":["Like even if they're brand new, to to have like a more retro hipster feel, that's what that is right there. That is..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":302.6069252334154,"end":305.835,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":302.6069252334154,"end":305.835,"channel":0,"text":["That is quintessential hipster television stuff."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":307.0340937453236,"end":307.3429128255979,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":307.0340937453236,"end":307.3429128255979,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":314.64445512436015,"end":318.736515249837,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":314.64445512436015,"end":318.736515249837,"channel":0,"text":["Are you talking about uh you talking about my eco-friendly wood veneers or what are you talking about?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":321.96542783169537,"end":322.0716881603919,"channel":0,"labels":["Noise"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":321.96542783169537,"end":322.0716881603919,"channel":0,"text":["smack"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":322.1048945131095,"end":340.30355640440433,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":322.1048945131095,"end":340.30355640440433,"channel":0,"text":["Ah, yes, yes, yes, the green recycling bin, yes. I always, because tomorrow's recycling day, so I've brought it out so I remember when I go out to recycle. Because if I don't, the paparazzi, they're gonna they're gonna take photos, click, click, through the uh the window and see that that it's it's there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":340.9577215529424,"end":341.3063882564779,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":340.9577215529424,"end":341.3063882564779,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":342.762,"end":342.942,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":342.762,"end":342.942,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":346.4912807151085,"end":352.02681348950665,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":346.4912807151085,"end":352.02681348950665,"channel":0,"text":["Exactly. I I got to be like, I have to set a good example for the French people."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":352.4110203749157,"end":357.62998029067836,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":352.4110203749157,"end":357.62998029067836,"channel":0,"text":["that are... throwing trash in the streets, right, because Paris is a very dirty city, I don't know if you've noticed."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":361.9521848323856,"end":372.3969973378584,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":361.9521848323856,"end":372.3969973378584,"channel":0,"text":["Oh yeah, they throw it in the river, yeah, but then, [smack] uh yeah, but sometimes they don't, and then it's, yeah, and then then then it's my problem, I don't know why..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":373.0378799453094,"end":374.58529598195264,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":373.0378799453094,"end":374.58529598195264,"channel":0,"text":["You know, I'm... I just, I just got here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":382.0372874504232,"end":386.0311336897633,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":382.0372874504232,"end":386.0311336897633,"channel":0,"text":["Lighting, what are you talking about? It's it's perfectly... we have a nice window here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":386.31220014288823,"end":386.55792715299896,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":386.31220014288823,"end":386.55792715299896,"channel":0,"text":["There's a..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":387.34491771240766,"end":390.45890441825014,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":387.34491771240766,"end":390.45890441825014,"channel":0,"text":["a giant lamp right there. I don't know if you, it's not on right now"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":390.8274949334163,"end":391.3023457772789,"channel":0,"labels":["Cross-talk"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":390.8274949334163,"end":391.3023457772789,"channel":0,"text":["because/crosstalk"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":391.9100220320122,"end":394.8618829379349,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":391.9100220320122,"end":394.8618829379349,"channel":0,"text":["yeah, I I I like having natural light, you know."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":395.49936987295655,"end":397.912,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":395.49936987295655,"end":397.912,"channel":0,"text":["In in my room over here, actually, I don't know if I, oh!"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":400.4220991076146,"end":401.01317218598905,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":400.4220991076146,"end":401.01317218598905,"channel":0,"text":["Oh, nothing."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":401.89326623470896,"end":405.83276098836257,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":401.89326623470896,"end":405.83276098836257,"channel":0,"text":["I'm just... walking into my room-ish."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":408.9632589452245,"end":409.9229225387651,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":408.9632589452245,"end":409.9229225387651,"channel":0,"text":["Ah can you see in here?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":410.208497172137,"end":411.5915042442491,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":410.208497172137,"end":411.5915042442491,"channel":0,"text":["Oh, there's my hand. Oh."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":418.6388716126221,"end":422.618122064198,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":418.6388716126221,"end":422.618122064198,"channel":0,"text":["Think uh my [laughter] my my head's in the wrong spot now."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":425.496247722807,"end":426.39,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":425.496247722807,"end":426.39,"channel":0,"text":["Now my arm is like..."]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":"Jim jaoregan@tcd.ie, 1","created_ago":"0 minutes","completed_by":1,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-22T15:47:37.452059Z","updated_at":"2024-09-22T15:48:33.674021Z","draft_created_at":null,"lead_time":1.838,"import_id":null,"last_action":null,"task":101,"project":7,"updated_by":1,"parent_prediction":null,"parent_annotation":null,"last_created_by":null}
from pathlib import Path
for fn in mapping:
tgfile = fn.replace(".wav", ".TextGrid")
if (Path(input_dir) / tgfile).exists():
print(mapping[fn], fn)
107 hsi_7_0719_209_001_main.wav 108 hsi_7_0719_209_002_main.wav 109 hsi_7_0719_209_003_main.wav 110 hsi_7_0719_210_001_main.wav 111 hsi_7_0719_210_002_main.wav 112 hsi_7_0719_210_003_main.wav 113 hsi_7_0719_211_002_main.wav 114 hsi_7_0719_211_004_main.wav 115 hsi_7_0719_222_002_main.wav 116 hsi_7_0719_222_004_main.wav 117 hsi_7_0719_227_002_main.wav 118 hsi_7_0719_227_003_main.wav
count = 230
for task in mapping:
jsonfile = task.replace(".wav", ".TextGrid")
file = f"{input_dir}{jsonfile}"
if not (Path(input_dir) / jsonfile).exists():
continue
data = tg_to_result(file)
r = post_results(count, mapping[task], 8, data)
count += 1
print(r.text)
{"id":230,"result":[{"value":{"start":17.550387993492645,"end":17.882451520669314,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":17.550387993492645,"end":17.882451520669314,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":18.76574050295926,"end":19.98773428296941,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":18.76574050295926,"end":19.98773428296941,"channel":0,"text":["So hi, welcome."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":21.741029706462236,"end":23.082783013498823,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":21.741029706462236,"end":23.082783013498823,"channel":0,"text":["Yeah, thank you very much."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":23.39575758186187,"end":45.08871528780162,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":23.39575758186187,"end":45.08871528780162,"channel":0,"text":["I really put a lot of effort to, you know, decorate it and ah put all the tiny details that I like ah on my space you know. I... it's really important for me, all the details that I... I put in each thing. For example, I mean, all the vases and the sculptures that I have, I mean I... just detailedly selected them."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":49.76423330275788,"end":50.16935080591342,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":49.76423330275788,"end":50.16935080591342,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":50.16935080591342,"end":73.83399456277427,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":50.16935080591342,"end":73.83399456277427,"channel":0,"text":["Yeah, ah I think my favorite set is the bases one because I mean they are all in different colors and I think it really matches with the lamp because the lamp has this blue um detail here in the middle and also in the base and then the base and the middle it's also the same shade of blue so I I really like that and I I think the other ones give a little bit uh of cohesion with the rest of the room."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":74.09905896509584,"end":80.8812492384345,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":74.09905896509584,"end":80.8812492384345,"channel":0,"text":["So, for example, with the couches and the grey and, you know, everything is a... a little bit balanced, let's say."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":85.15971229301545,"end":88.53347772913042,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":85.15971229301545,"end":88.53347772913042,"channel":0,"text":["Ah you mean the brown one or the black one?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":91.46774647053269,"end":98.38415165082438,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":91.46774647053269,"end":98.38415165082438,"channel":0,"text":["Okay, yeah, that is a really, really eh nice sculpture that a friend of mine gifted me uh on a trip to Africa."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":98.38415165082438,"end":98.82856213397574,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":98.38415165082438,"end":98.82856213397574,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":98.82856213397574,"end":110.72434584474667,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":98.82856213397574,"end":110.72434584474667,"channel":0,"text":["So um she found it on a fair and she told me that it was really, really nice and that the person who made them eh was uh an old man who was carving them by hand."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":110.89603092112745,"end":113.57428576073943,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":110.89603092112745,"end":113.57428576073943,"channel":0,"text":["So I think it's really special for me in that sense."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":116.05957399241203,"end":116.44476768393697,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":116.05957399241203,"end":116.44476768393697,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":116.44476768393697,"end":124.10583001792132,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":116.44476768393697,"end":124.10583001792132,"channel":0,"text":["Yeah, and the other one is eh one that I I personally like, because it's from an artist that I really uh enjoy."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":124.10583001792132,"end":124.48438243890273,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":124.10583001792132,"end":124.48438243890273,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":124.48438243890273,"end":128.53077078663694,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":124.48438243890273,"end":128.53077078663694,"channel":0,"text":["Eh he's not so really renowned, but ah I really like his work."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":128.53077078663694,"end":128.9026819370748,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":128.53077078663694,"end":128.9026819370748,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":128.9026819370748,"end":132.54534227773578,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":128.9026819370748,"end":132.54534227773578,"channel":0,"text":["And eh it's uh marble, so it's card marble."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":132.54534227773578,"end":132.88145296437975,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":132.54534227773578,"end":132.88145296437975,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":132.88145296437975,"end":140.30463417379082,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":132.88145296437975,"end":140.30463417379082,"channel":0,"text":["And I really like the details, like the way it's uh lifting the hand. I really like that, it's uh... It's a message of hope."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":143.11957670265227,"end":143.87668154461508,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":143.11957670265227,"end":143.87668154461508,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":143.87668154461508,"end":158.88484368646976,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":143.87668154461508,"end":158.88484368646976,"channel":0,"text":["Yeah, I mean [breath] I had an issue there because uh the problem is that ah my previous one, I mean a friend of mine came and and brought ah her dog and basically the dog clashed on the previous trash can so it got broken and then of course I need a trash can."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":158.88484368646976,"end":159.20362467255939,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":158.88484368646976,"end":159.20362467255939,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":159.20362467255939,"end":166.20920891439042,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":159.20362467255939,"end":166.20920891439042,"channel":0,"text":["But yeah, this one is uh not at all uh according to my styles, but you know, it is what it is."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":169.86197126564247,"end":174.62901401981713,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":169.86197126564247,"end":174.62901401981713,"channel":0,"text":["Yeah, that one is it's better, but that one is just for paper because it's close to the desk."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":174.62901401981713,"end":174.801687053949,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":174.62901401981713,"end":174.801687053949,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":174.801687053949,"end":179.6953472629364,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":174.801687053949,"end":179.6953472629364,"channel":0,"text":["So I would only use it ah whenever I'm working. So I use the desk and it's for paper."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":179.6953472629364,"end":179.96099808467773,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":179.6953472629364,"end":179.96099808467773,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":179.96099808467773,"end":185.83574352354015,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":179.96099808467773,"end":185.83574352354015,"channel":0,"text":["The other one is more for general purpose because I am really into separating trash because it's really important."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":189.98882551445655,"end":196.48683065050562,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":189.98882551445655,"end":196.48683065050562,"channel":0,"text":["I mean, [sigh] the thing is that I wanted to put it more here, but I really like this space because ah sometimes I do stretching or yoga."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":196.48683065050562,"end":196.71263384898577,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":196.48683065050562,"end":196.71263384898577,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":196.71263384898577,"end":204.42685812347275,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":196.71263384898577,"end":204.42685812347275,"channel":0,"text":["So basically, this space was more uh thought for that, like ah in the sense of actually using it like having a more wide space."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":204.42685812347275,"end":204.66594386303996,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":204.42685812347275,"end":204.66594386303996,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":204.66594386303996,"end":212.83053814333903,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":204.66594386303996,"end":212.83053814333903,"channel":0,"text":["Also, sometimes ah my nephews come and so we can play a little bit and you know, this kind of things. It's cool. We can put a blanket or"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":212.83053814333903,"end":213.12939531779804,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":212.83053814333903,"end":213.12939531779804,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":213.12939531779804,"end":215.7565594608725,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":213.12939531779804,"end":215.7565594608725,"channel":0,"text":["uh you know, a carpet and just they can play here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":222.46007422159423,"end":225.6937865568752,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":222.46007422159423,"end":225.6937865568752,"channel":0,"text":["But maybe since you are saying, I could actually flip it this way."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":225.6937865568752,"end":225.9727199197036,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":225.6937865568752,"end":225.9727199197036,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":225.9727199197036,"end":230.96278688019368,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":225.9727199197036,"end":230.96278688019368,"channel":0,"text":["So I could actually put the desk facing the... the picture."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":230.96278688019368,"end":231.59370758182934,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":230.96278688019368,"end":231.59370758182934,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":231.59370758182934,"end":232.86883152618776,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":231.59370758182934,"end":232.86883152618776,"channel":0,"text":["And that would be nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":236.00416119446407,"end":247.913042565234,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":236.00416119446407,"end":247.913042565234,"channel":0,"text":["Yeah, they are [breath] really, really expensive paints. Ah I mean ah, not that I'm bragging, but you know, eh it was ah, it's super, super um exquisite art that I have here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":247.913042565234,"end":248.19522001086725,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":247.913042565234,"end":248.19522001086725,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":248.19522001086725,"end":251.2816197791967,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":248.19522001086725,"end":251.2816197791967,"channel":0,"text":["I mean, all of them, they are from different ah painters."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":251.2816197791967,"end":251.60040076528628,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":251.2816197791967,"end":251.60040076528628,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":251.60040076528628,"end":259.1815829716601,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":251.60040076528628,"end":259.1815829716601,"channel":0,"text":["But um though my favorite one is this one, because it's ah a really, really nice landscape that I really appreciate."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":259.1815829716601,"end":259.36414135914043,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":259.1815829716601,"end":259.36414135914043,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":259.36414135914043,"end":262.1933226106857,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":259.36414135914043,"end":262.1933226106857,"channel":0,"text":["Ah this landscape is from um..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":263.70753229461127,"end":265.02914513277443,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":263.70753229461127,"end":265.02914513277443,"channel":0,"text":["from uh Norway."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":265.8854992707134,"end":276.56574559093,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":265.8854992707134,"end":276.56574559093,"channel":0,"text":["Yeah, so it's really, really nice. I really like it. And the way that the light shade the the light ah goes on on top of the ah of the stones is really nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":276.6851035796253,"end":279.9459674165002,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":276.6851035796253,"end":279.9459674165002,"channel":0,"text":["I really like to to enjoy looking at it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":280.7037222301916,"end":281.3612080140014,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":280.7037222301916,"end":281.3612080140014,"channel":0,"text":["Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":282.00541125672413,"end":295.4766291347042,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":282.00541125672413,"end":295.4766291347042,"channel":0,"text":["it's really nice. The rest, I mean, ah they are ah from other artists. In this one, ah what I really appreciate is the shades, because ah I mean, all the animals, the details, and you can e- actually see the strokes on each painting. So it's really nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":295.4766291347042,"end":295.72235614481497,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":295.4766291347042,"end":295.72235614481497,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":295.72235614481497,"end":299.4235833053739,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":295.72235614481497,"end":299.4235833053739,"channel":0,"text":["I really, really like also, I mean, it has a strange perspective."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":299.4235833053739,"end":299.7025166682023,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":299.4235833053739,"end":299.7025166682023,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":299.7025166682023,"end":301.9456917347458,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":299.7025166682023,"end":301.9456917347458,"channel":0,"text":["And I I really appreciate that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":301.9456917347458,"end":302.23126636811776,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":301.9456917347458,"end":302.23126636811776,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":302.23126636811776,"end":311.311,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":302.23126636811776,"end":311.311,"channel":0,"text":["And from that one, I think it's more of ah what you can see in the details, because ah as you can see, all the the things on the roof are the interesting thing."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":311.311,"end":311.6074144318135,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":311.311,"end":311.6074144318135,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":311.6074144318135,"end":322.66661471134245,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":311.6074144318135,"end":322.66661471134245,"channel":0,"text":["And you might not have this in a lot of paintings, because normally you would see the floor. And I really, really think that this one is nice because of that, because it has a different angle."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":325.6819999715039,"end":326.0605523924853,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":325.6819999715039,"end":326.0605523924853,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":326.0605523924853,"end":328.8033971269646,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":326.0605523924853,"end":328.8033971269646,"channel":0,"text":["Yeah, that's true. That's true. You're you're totally right."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":328.8033971269646,"end":329.13428781530183,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":328.8033971269646,"end":329.13428781530183,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":329.13428781530183,"end":329.6788719998716,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":329.13428781530183,"end":329.6788719998716,"channel":0,"text":["Um."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":329.6788719998716,"end":330.00429425650475,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":329.6788719998716,"end":330.00429425650475,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":330.00429425650475,"end":330.4293355712909,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":330.00429425650475,"end":330.4293355712909,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":330.4293355712909,"end":330.94735467368645,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":330.4293355712909,"end":330.94735467368645,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":330.94735467368645,"end":331.0469737318395,"channel":0,"labels":["Noise"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":330.94735467368645,"end":331.0469737318395,"channel":0,"text":["smack"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":331.0469737318395,"end":331.47201504662564,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":331.0469737318395,"end":331.47201504662564,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":331.47201504662564,"end":336.0969970083099,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":331.47201504662564,"end":336.0969970083099,"channel":0,"text":["Maybe I should move it to the bedroom and then bring... ah the other one in the bedroom is ah blue."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":336.0969970083099,"end":336.4147900366486,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":336.0969970083099,"end":336.4147900366486,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":336.4147900366486,"end":339.1974823943891,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":336.4147900366486,"end":339.1974823943891,"channel":0,"text":["So I think it would make a little bit more of con- contrast."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":339.1974823943891,"end":339.93549827753833,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":339.1974823943891,"end":339.93549827753833,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":341.73753871988976,"end":342.10944987032764,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":341.73753871988976,"end":342.10944987032764,"channel":0,"text":["Mhm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":342.38174196261247,"end":342.7005229487021,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":342.38174196261247,"end":342.7005229487021,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":343.769767506211,"end":359.76951842686367,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":343.769767506211,"end":359.76951842686367,"channel":0,"text":["Yeah, actually... actually it is. Eh it it it makes a really nice cont- contrast and I think it's really nice because it's the center of attention of this whole part here because I have the furniture here and then the paint on top. It's really nice I think it makes a focal area."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":359.76951842686367,"end":360.44692802230406,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":359.76951842686367,"end":360.44692802230406,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":361.33685827513756,"end":361.7951059426414,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":361.33685827513756,"end":361.7951059426414,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":361.7951059426414,"end":372.3689070530728,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":361.7951059426414,"end":372.3689070530728,"channel":0,"text":["But maybe I should remove this one or actually move this one on top of the of the fire and then I would have two focal points and maybe I could put this too in the in the bedroom."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":372.3689070530728,"end":372.7142531213365,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":372.3689070530728,"end":372.7142531213365,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":376.275057418885,"end":377.07781630183536,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":376.275057418885,"end":377.07781630183536,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":377.07781630183536,"end":384.5710240616637,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":377.07781630183536,"end":384.5710240616637,"channel":0,"text":["I mean ah, sometimes I I do combine them because I work a lot uh with computational analysis."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":384.5710240616637,"end":384.8153615756923,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":384.5710240616637,"end":384.8153615756923,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":384.8153615756923,"end":389.2638400010202,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":384.8153615756923,"end":389.2638400010202,"channel":0,"text":["So then I pair them up and I just use them for having more more computational power."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":389.61582733982743,"end":390.3797901095766,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":389.61582733982743,"end":390.3797901095766,"channel":0,"text":["So yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":390.3797901095766,"end":390.5723869553391,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":390.3797901095766,"end":390.5723869553391,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":390.5723869553391,"end":398.1771068183251,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":390.5723869553391,"end":398.1771068183251,"channel":0,"text":["And of course, sometimes I k- I tri- I go on a trip and then I need just to take my ah laptop and then not the PC one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":398.1771068183251,"end":398.42283382843584,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":398.1771068183251,"end":398.42283382843584,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":398.42283382843584,"end":402.5943865825918,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":398.42283382843584,"end":402.5943865825918,"channel":0,"text":["So, you know, it's a little bit more of a versatility ah thing."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":404.7947183764668,"end":405.22640096179646,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":404.7947183764668,"end":405.22640096179646,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":405.22640096179646,"end":409.32406488715657,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":405.22640096179646,"end":409.32406488715657,"channel":0,"text":["Ah no, it's uh because before you came, I was just checking on some files that I got."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":409.32406488715657,"end":409.55493497900943,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":409.32406488715657,"end":409.55493497900943,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":409.55493497900943,"end":415.70357866348206,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":409.55493497900943,"end":415.70357866348206,"channel":0,"text":["So, ah but it was just because of that. No, no, no, I don't store it here. I normally would put it on the desk."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":420.64613699626216,"end":421.8814133173594,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":420.64613699626216,"end":421.8814133173594,"channel":0,"text":["Okay, thank you very much."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":427.17662894117035,"end":427.43,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":427.17662894117035,"end":427.43,"channel":0,"text":["Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":"Jim jaoregan@tcd.ie, 1","created_ago":"1 minute","completed_by":1,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-22T15:56:24.846038Z","updated_at":"2024-09-22T15:57:55.740608Z","draft_created_at":null,"lead_time":1.65,"import_id":null,"last_action":null,"task":107,"project":8,"updated_by":1,"parent_prediction":null,"parent_annotation":null,"last_created_by":null} {"id":231,"result":[{"value":{"start":0.009,"end":2.172698245910812,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":0.009,"end":2.172698245910812,"channel":0,"text":["Little bit towards the left. [laughter]"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":4.6199299317316616,"end":5.456730020216873,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":4.6199299317316616,"end":5.456730020216873,"channel":0,"text":["Yeah, yeah, okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":10.542585627786666,"end":13.225658927374168,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":10.542585627786666,"end":13.225658927374168,"channel":0,"text":["You need me to uh point at things more or?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":14.807116222866906,"end":15.225516267109512,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":14.807116222866906,"end":15.225516267109512,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":17.815611779087547,"end":18.222,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":17.815611779087547,"end":18.222,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":23.474872854127554,"end":24.119076096850293,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":23.474872854127554,"end":24.119076096850293,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":24.119076096850293,"end":27.260397063941603,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":24.119076096850293,"end":27.260397063941603,"channel":0,"text":["Yeah, okay, I hope you you had taken care of uh the things."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":27.54597169731354,"end":31.08397789871972,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":27.54597169731354,"end":31.08397789871972,"channel":0,"text":["really thoroughly, so ah you you actually performed the cleaning."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":31.70708455288635,"end":32.68999259332929,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":31.70708455288635,"end":32.68999259332929,"channel":0,"text":["Okay, that's great."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":33.115033908115436,"end":41.13775239052153,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":33.115033908115436,"end":41.13775239052153,"channel":0,"text":["Ah, but you know, I am just uh, but... There is a stain on... on the pillow."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":42.41290816778882,"end":46.98874357228335,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":42.41290816778882,"end":46.98874357228335,"channel":0,"text":["But I mean, th- th- that's not supposed to be like that. Yeah, I can I can actually see it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":48.115783714535574,"end":49.07876794334792,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":48.115783714535574,"end":49.07876794334792,"channel":0,"text":["I mean, [did_y-]"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":50.91821503205537,"end":53.2601743142539,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":50.91821503205537,"end":53.2601743142539,"channel":0,"text":["Aha, okay, okay. Yeah, that's good, that's good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":53.70980486106575,"end":55.37676376749263,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":53.70980486106575,"end":55.37676376749263,"channel":0,"text":["Hmm... What happened here?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":57.60826250302871,"end":59.79324051185121,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":57.60826250302871,"end":59.79324051185121,"channel":0,"text":["I mean, there is... there is a mark on the wall."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":64.05014191131366,"end":69.78421612772074,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":64.05014191131366,"end":69.78421612772074,"channel":0,"text":["Yeah, yeah, le- le- let's check that because, because, yeah, I I don't think that was there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":71.14246429625341,"end":71.82651516223736,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":71.14246429625341,"end":71.82651516223736,"channel":0,"text":["Mm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":74.73122327524791,"end":74.97695028535865,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":74.73122327524791,"end":74.97695028535865,"channel":0,"text":["Th-"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":75.4617630350366,"end":76.70368062667734,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":75.4617630350366,"end":76.70368062667734,"channel":0,"text":["What happened with the statue?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":77.87918551288276,"end":81.43470630625072,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":77.87918551288276,"end":81.43470630625072,"channel":0,"text":["The black one, because uh it was doing this with the finger..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":81.43470630625072,"end":81.75348729234032,"channel":0,"labels":["Cross-talk"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":81.43470630625072,"end":81.75348729234032,"channel":0,"text":["breath/crosstalk"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":81.75348729234032,"end":82.84929693202334,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":81.75348729234032,"end":82.84929693202334,"channel":0,"text":["and it had a finger."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":84.63505930082857,"end":85.91018324518699,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":84.63505930082857,"end":85.91018324518699,"channel":0,"text":["It it it had."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":87.43767547019966,"end":88.30104064085901,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":87.43767547019966,"end":88.30104064085901,"channel":0,"text":["It doesn't, now."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":90.334104333312,"end":92.15381246224015,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":90.334104333312,"end":92.15381246224015,"channel":0,"text":["I mean, I... are... aren't you seeing it?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":95.43747453284357,"end":99.39567177678948,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":95.43747453284357,"end":99.39567177678948,"channel":0,"text":["Yeah, yeah, hundred percent. Because, yeah, really, it had a finger pointing."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":99.39567177678948,"end":99.98674485516396,"channel":0,"labels":["Cross-talk"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":99.39567177678948,"end":99.98674485516396,"channel":0,"text":["crosstalk"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":99.98674485516396,"end":100.9895767072375,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":99.98674485516396,"end":100.9895767072375,"channel":0,"text":["Yes, yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":102.15788576734546,"end":103.23377159539788,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":102.15788576734546,"end":103.23377159539788,"channel":0,"text":["Um."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":103.88461610866416,"end":113.16716831128419,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":103.88461610866416,"end":113.16716831128419,"channel":0,"text":["I think ah... yeah, you have a lot of things from yours here, right? Because, I mean, that trash bin was not from the apartment, the blue one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":114.90718119368995,"end":115.41855902554202,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":114.90718119368995,"end":115.41855902554202,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":116.9026534636081,"end":122.73368900083045,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":116.9026534636081,"end":122.73368900083045,"channel":0,"text":["Okay. Yeah yeah. Because uh the the gray one was the one that was here, but this one is, it was not."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":123.46688649795693,"end":123.93177543600427,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":123.46688649795693,"end":123.93177543600427,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":124.99437872296963,"end":125.8833210507289,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":124.99437872296963,"end":125.8833210507289,"channel":0,"text":["Okay okay good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":125.8833210507289,"end":126.264,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":125.8833210507289,"end":126.264,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":126.264,"end":128.9648705829284,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":126.264,"end":128.9648705829284,"channel":0,"text":["So, uh, and that that's also your computer, I guess."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":130.0938865753291,"end":130.60526440718115,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":130.0938865753291,"end":130.60526440718115,"channel":0,"text":["Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":131.5856102090129,"end":131.99072771216845,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":131.5856102090129,"end":131.99072771216845,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":133.13966751619972,"end":133.59127391316,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":133.13966751619972,"end":133.59127391316,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":134.25540096751334,"end":136.00650385609757,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":134.25540096751334,"end":136.00650385609757,"channel":0,"text":["And have you, have you changed the table?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":138.15046146473338,"end":139.83070291224735,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":138.15046146473338,"end":139.83070291224735,"channel":0,"text":["The, the, the center table here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":142.75950322194558,"end":143.3771413824942,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":142.75950322194558,"end":143.3771413824942,"channel":0,"text":["Hmm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":144.12019244305594,"end":145.24256716491308,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":144.12019244305594,"end":145.24256716491308,"channel":0,"text":["Yeah, it could be."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":145.73402118513454,"end":147.47403406754032,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":145.73402118513454,"end":147.47403406754032,"channel":0,"text":["Yeah uh, well."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":147.47403406754032,"end":148.63329263743594,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":147.47403406754032,"end":148.63329263743594,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":148.63329263743594,"end":155.20957177012855,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":148.63329263743594,"end":155.20957177012855,"channel":0,"text":["Yeah, the problem is that, you know, whenever the weight is on, then it leaves a mark on the on the carpet."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":155.79888568311475,"end":157.32637790812743,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":155.79888568311475,"end":157.32637790812743,"channel":0,"text":["Tha- that's... That doesn't look good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":159.63089878673352,"end":160.10907026586793,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":159.63089878673352,"end":160.10907026586793,"channel":0,"text":["Hmm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":160.98958032478654,"end":163.5199044018728,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":160.98958032478654,"end":163.5199044018728,"channel":0,"text":["So, ah, did y- did you move the lamp to clean?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":166.8510432913552,"end":169.7665610599664,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":166.8510432913552,"end":169.7665610599664,"channel":0,"text":["Because because I can see some dust in the back."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":174.00054303966678,"end":177.54296614379896,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":174.00054303966678,"end":177.54296614379896,"channel":0,"text":["Yeah, please, please do that because I can still see dirt."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":178.63877578348198,"end":179.09702345098577,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":178.63877578348198,"end":179.09702345098577,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":181.08804698526896,"end":185.61377966645563,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":181.08804698526896,"end":185.61377966645563,"channel":0,"text":["I mean, this this furniture looks great. I think you took good care of it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":185.85851875149217,"end":188.02357294868406,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":185.85851875149217,"end":188.02357294868406,"channel":0,"text":["Is the TV ah working right?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":188.9884118416112,"end":189.89162463553174,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":188.9884118416112,"end":189.89162463553174,"channel":0,"text":["Okay, great."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":192.29576457229084,"end":193.09271703751486,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":192.29576457229084,"end":193.09271703751486,"channel":0,"text":["Mm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":193.417368053834,"end":194.10141891981792,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":193.417368053834,"end":194.10141891981792,"channel":0,"text":["Yeah. I-"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":194.313939577211,"end":195.90120323711548,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":194.313939577211,"end":195.90120323711548,"channel":0,"text":["Did you misplace this?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":197.17938645542313,"end":198.0693167082566,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":197.17938645542313,"end":198.0693167082566,"channel":0,"text":["The um..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":198.69359613934876,"end":202.95973288087478,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":198.69359613934876,"end":202.95973288087478,"channel":0,"text":["The container the vase for the the the plants for watering the plants?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":206.01193840752876,"end":215.67464917757613,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":206.01193840752876,"end":215.67464917757613,"channel":0,"text":["Yeah uh, yeah if y- if you if you could just actually put it back to w- where it was, because I think it's important for... for the next one, so I can keep track of the changes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":218.36964738947378,"end":220.44172379905623,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":218.36964738947378,"end":220.44172379905623,"channel":0,"text":["By the... by the fireplace, as it was."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":221.67700012015345,"end":226.2727911691874,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":221.67700012015345,"end":226.2727911691874,"channel":0,"text":["Yeah, I think the the windows are a little bit dirty."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":227.14042022363034,"end":230.80640156366078,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":227.14042022363034,"end":230.80640156366078,"channel":0,"text":["I mean, did you did you clean from inside and outside or just inside?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":231.69234828328854,"end":239.1946066107214,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":231.69234828328854,"end":239.1946066107214,"channel":0,"text":["Yeah, yeah, I think you need to to recheck them on the outside because I can see some stains from the rain and that doesn't look good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":239.75911460692174,"end":241.6921577046104,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":239.75911460692174,"end":241.6921577046104,"channel":0,"text":["Yeah, it's not good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":243.24785299115214,"end":245.24687542475573,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":243.24785299115214,"end":245.24687542475573,"channel":0,"text":["And uh what else?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":247.188,"end":247.75727569021134,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":247.188,"end":247.75727569021134,"channel":0,"text":["Hmm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":249.16426895327504,"end":251.02382470546442,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":249.16426895327504,"end":251.02382470546442,"channel":0,"text":["Is the w- w-?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":251.537,"end":253.6644563102707,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":251.537,"end":253.6644563102707,"channel":0,"text":["What happened? There, on the door?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":254.43669835743552,"end":255.55243180874913,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":254.43669835743552,"end":255.55243180874913,"channel":0,"text":["It's... Yeah, it's a..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":256.51541603756147,"end":257.18618436245833,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":256.51541603756147,"end":257.18618436245833,"channel":0,"text":["It's like a..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":257.9233653927906,"end":258.85978453942874,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":257.9233653927906,"end":258.85978453942874,"channel":0,"text":["Like a mark!"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":260.3142227884626,"end":262.3394406005378,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":260.3142227884626,"end":262.3394406005378,"channel":0,"text":["Yeah, I can actually see a mark."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":268.99084505808446,"end":269.8608514992873,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":268.99084505808446,"end":269.8608514992873,"channel":0,"text":["Mm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":270.49177220092304,"end":273.571932271437,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":270.49177220092304,"end":273.571932271437,"channel":0,"text":["I mean, because because it looks like a stain, I don't know."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":275.16265674190225,"end":276.12564097071464,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":275.16265674190225,"end":276.12564097071464,"channel":0,"text":["Oh, okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":276.9557997886563,"end":283.7389780661816,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":276.9557997886563,"end":283.7389780661816,"channel":0,"text":["Nice, nice, you took care of the plant. That that is really nice. I... I.. looks... looks nice and taken care of."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":286.3846766279943,"end":287.05544495289115,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":286.3846766279943,"end":287.05544495289115,"channel":0,"text":["Hmm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":288.1778196747483,"end":296.49395867090436,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":288.1778196747483,"end":296.49395867090436,"channel":0,"text":["But but so so the the hand here, ah the sculpture, it has a scratch on the... on the palm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":301.7331817223477,"end":305.4426563480514,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":301.7331817223477,"end":305.4426563480514,"channel":0,"text":["I am not so sure about that. I think it's... it was not there before."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":307.706373511231,"end":308.17790371982187,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":307.706373511231,"end":308.17790371982187,"channel":0,"text":["Hmm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":308.17790371982187,"end":308.8353895036317,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":308.17790371982187,"end":308.8353895036317,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":308.8353895036317,"end":314.7811494713001,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":308.8353895036317,"end":314.7811494713001,"channel":0,"text":["Yeah yeah, we should check it on the pictures because... because really it's not uh... I don't think it was there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":315.30142477442234,"end":315.62020576051196,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":315.30142477442234,"end":315.62020576051196,"channel":0,"text":["Bu-"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":319.4844372917743,"end":325.71923270337544,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":319.4844372917743,"end":325.71923270337544,"channel":0,"text":["Yeah, please, please. Uh s- so so move it because uh yeah, and also the... the newspaper there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":325.86534065533317,"end":331.8853910417238,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":325.86534065533317,"end":331.8853910417238,"channel":0,"text":["I mean, try to move all your stuff, because otherwise, eh it's not good for the rest."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":332.79648154893107,"end":333.766107048287,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":332.79648154893107,"end":333.766107048287,"channel":0,"text":["Yeah. [breath]"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":334.72390313405924,"end":335.9060492908082,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":334.72390313405924,"end":335.9060492908082,"channel":0,"text":["So what else?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":338.13751619343543,"end":339.12706550442186,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":338.13751619343543,"end":339.12706550442186,"channel":0,"text":["exhale"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":344.7627571054195,"end":347.8376653670755,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":344.7627571054195,"end":347.8376653670755,"channel":0,"text":["Yeah, I was actually going to comment abou- about that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":348.05018602446853,"end":351.21408854052834,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":348.05018602446853,"end":351.21408854052834,"channel":0,"text":["But I I can actually, I mean ho-, did you clean them?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":353.1525682989262,"end":353.7967715416489,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":353.1525682989262,"end":353.7967715416489,"channel":0,"text":["OK."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":354.2284541269786,"end":370.4602482036221,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":354.2284541269786,"end":370.4602482036221,"channel":0,"text":["Because I can see a little bit of dust. Maybe you can... just... put a l- ah a little bit, ah clean it. Because, yeah, on the upper part, especially, i- i- you can see an actual uh you know layer of dust that doesn't"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":371.82170866504646,"end":379.93178342250206,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":371.82170866504646,"end":379.93178342250206,"channel":0,"text":["No, of course, of course. But y- you know, when you have the frame, so in the upper part and in the lower part, there is a little bit of a line of dust."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":379.93178342250206,"end":380.2882194969443,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":379.93178342250206,"end":380.2882194969443,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":380.2882194969443,"end":393.2971745287673,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":380.2882194969443,"end":393.2971745287673,"channel":0,"text":["And then it it's not good. So uh if you could actually, not wet cloth, but normal dry cloth, and then you put... put it over and like towards all the sides, and I think that is uh that is good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":393.5163364567039,"end":394.51916830877747,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":393.5163364567039,"end":394.51916830877747,"channel":0,"text":["That is gonna look good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":396.9499051606197,"end":398.1718989406299,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":396.9499051606197,"end":398.1718989406299,"channel":0,"text":["Especially in the frame ones."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":398.1718989406299,"end":398.4309084918277,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":398.1718989406299,"end":398.4309084918277,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":398.4309084918277,"end":415.20046063064615,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":398.4309084918277,"end":415.20046063064615,"channel":0,"text":["The ones that uh don't have a frame like those, eh those ones are not that problematic, but these ones that have a frame are n-, you don't have to take that much care in terms of uh damaging them, because they have a glass, so you can actually clean them normally."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":415.488661168447,"end":421.1629639499624,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":415.488661168447,"end":421.1629639499624,"channel":0,"text":["The the the ones that you need to take more care about are those ones, ah because they don't have a frame."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":422.29197994236307,"end":422.6705323633445,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":422.29197994236307,"end":422.6705323633445,"channel":0,"text":["Mhm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":431.3173772579004,"end":437.100498555609,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":431.3173772579004,"end":437.100498555609,"channel":0,"text":["Yeah sure, and let's check this... those marks because otherwise I won't be able to give your whole deposit back."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":439.2257051295397,"end":439.499,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":439.2257051295397,"end":439.499,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":"Jim jaoregan@tcd.ie, 1","created_ago":"1 minute","completed_by":1,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-22T15:56:55.623868Z","updated_at":"2024-09-22T15:57:56.058941Z","draft_created_at":null,"lead_time":1.488,"import_id":null,"last_action":null,"task":108,"project":8,"updated_by":1,"parent_prediction":null,"parent_annotation":null,"last_created_by":null} {"id":232,"result":[{"value":{"start":7.0246996211076835,"end":7.9810425793764965,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":7.0246996211076835,"end":7.9810425793764965,"channel":0,"text":["Yeah, you look normal."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":13.348135794389092,"end":13.884,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":13.348135794389092,"end":13.884,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":13.884,"end":14.124,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":13.884,"end":14.124,"channel":0,"text":["Kay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":14.124,"end":14.958384414008508,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":14.124,"end":14.958384414008508,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":14.958384414008508,"end":19.187664617755264,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":14.958384414008508,"end":19.187664617755264,"channel":0,"text":["So hi, how are you? I think uh you made a good choice purchasing this one no?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":19.410397273171508,"end":20.887245351977448,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":19.410397273171508,"end":20.887245351977448,"channel":0,"text":["It has a lot of potential."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":22.33860721318722,"end":22.92316502099803,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":22.33860721318722,"end":22.92316502099803,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":25.48312427242124,"end":32.165307723473,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":25.48312427242124,"end":32.165307723473,"channel":0,"text":["Yeah, yeah, of course. I mean um, first of all, I think the color, it's not the most favorable one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":32.165307723473,"end":32.487307921054956,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":32.165307723473,"end":32.487307921054956,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":32.487307921054956,"end":39.183714092588325,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":32.487307921054956,"end":39.183714092588325,"channel":0,"text":["I would I would go for something more uh neutral, like white or a l- really light gray."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":40.200760578410645,"end":41.28321071953896,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":40.200760578410645,"end":41.28321071953896,"channel":0,"text":["Yeah, the walls."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":41.28321071953896,"end":41.872,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":41.28321071953896,"end":41.872,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":41.872,"end":46.08446732214343,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":41.872,"end":46.08446732214343,"channel":0,"text":["Because uh because really, I I don't think this color really matches."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":46.53156727593233,"end":47.022266506150984,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":46.53156727593233,"end":47.022266506150984,"channel":0,"text":["Eh..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":47.127651575728144,"end":47.19351724421387,"channel":0,"labels":["Noise"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":47.127651575728144,"end":47.19351724421387,"channel":0,"text":["smack"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":47.2709094046846,"end":58.11809420728724,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":47.2709094046846,"end":58.11809420728724,"channel":0,"text":["I mean... it matches but the the problem is that eh it might be too much if you want something more like a a place where you can take some rest and stay in the night like watch some TV."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":58.377576515046414,"end":64.16213173334823,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":58.377576515046414,"end":64.16213173334823,"channel":0,"text":["Maybe you don't want so much information incoming. Same with the with the mm pictures."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":64.5038916314759,"end":69.17700870799702,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":64.5038916314759,"end":69.17700870799702,"channel":0,"text":["Maybe you just should keep one or two because more than that is ah..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":76.22830289743949,"end":77.03021741125319,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":76.22830289743949,"end":77.03021741125319,"channel":0,"text":["Yeah, of course."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":77.72556222695735,"end":83.72019102033126,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":77.72556222695735,"end":83.72019102033126,"channel":0,"text":["Ah... I mean, I think in this case, you should decide because ah so the flooring is gray."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":84.01145706639412,"end":94.27323349271059,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":84.01145706639412,"end":94.27323349271059,"channel":0,"text":["So uh I don't know if the furniture should be gray, same as the floor, or you want to keep this um [smack] this color because."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":96.0080712419568,"end":96.23201451480826,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":96.0080712419568,"end":96.23201451480826,"channel":0,"text":["Mm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":97.56321654494752,"end":100.6319335901842,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":97.56321654494752,"end":100.6319335901842,"channel":0,"text":["Eh no, the tables, the table and the and the furniture there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":100.98841375456654,"end":101.34738164781373,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":100.98841375456654,"end":101.34738164781373,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":101.34738164781373,"end":109.08796716447772,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":101.34738164781373,"end":109.08796716447772,"channel":0,"text":["Yeah, because uh I can see that they are from the same, same color, little bit brown, eh but like really saturated brown."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":109.08796716447772,"end":109.32080467737882,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":109.08796716447772,"end":109.32080467737882,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":109.32080467737882,"end":112.15853935105842,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":109.32080467737882,"end":112.15853935105842,"channel":0,"text":["So in that case, maybe I would go for something lighter"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":112.54296741063128,"end":116.63066662954346,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":112.54296741063128,"end":116.63066662954346,"channel":0,"text":["if you want like uh more uh es- ah space to take some rest."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":116.63066662954346,"end":117.25540486993464,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":116.63066662954346,"end":117.25540486993464,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":117.25540486993464,"end":140.924379845518,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":117.25540486993464,"end":140.924379845518,"channel":0,"text":["With um with the sofas ah I would just put them in a different eh direction so I would put... keep the big one in the center and then the small one on the side and then maybe you can get another to put on the other side or maybe you can actually purchase one new one in L shape and then it would be nice because you can see more people and then you can also lay on on the sofa that would be nice"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":140.924379845518,"end":141.35086004896306,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":140.924379845518,"end":141.35086004896306,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":141.35086004896306,"end":155.73017426332243,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":141.35086004896306,"end":155.73017426332243,"channel":0,"text":["And towards the color I would go for something lighter and then I would just put a little bit of a pop of color with some pillows or some other um you know decorations that you can put on like a little blanket or something like this."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":159.23492678354316,"end":164.2118670222521,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":159.23492678354316,"end":164.2118670222521,"channel":0,"text":["Uh I think that table is, uh, I mean, for that placement, it's really big."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":164.2118670222521,"end":164.6202341668636,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":164.2118670222521,"end":164.6202341668636,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":164.6202341668636,"end":172.99928309862932,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":164.6202341668636,"end":172.99928309862932,"channel":0,"text":["So you need to go for something ah more minimalist in terms of maybe two small ones, like a little bit short in eh in height."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":174.9921460509093,"end":177.34850930363186,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":174.9921460509093,"end":177.34850930363186,"channel":0,"text":["Ah, y- eh you mean the desk for the mm, yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":177.73972294836253,"end":185.64028622465403,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":177.73972294836253,"end":185.64028622465403,"channel":0,"text":["I mean, that desk is a little bit confusing in position, because because you have the fireplace here, and maybe you want to make that your focal point."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":186.175,"end":201.9344196806559,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":186.175,"end":201.9344196806559,"channel":0,"text":["Because uh maybe the TV will look really nice on top of the of the fireplace, and then you can move the desk toward this area here, maybe next to the window, which would be nice if you work here to have some natural light while you're working. I think that would be nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":203.0721235433218,"end":203.8328720143319,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":203.0721235433218,"end":203.8328720143319,"channel":0,"text":["That might work."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":207.22923522769233,"end":217.25303519766464,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":207.22923522769233,"end":217.25303519766464,"channel":0,"text":["Your laptop, I mean, if you're if you're actually working ah in the couch, then maybe you can ah get one of those tables that you can flip and and take back."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":217.53282924698118,"end":225.15091172678194,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":217.53282924698118,"end":225.15091172678194,"channel":0,"text":["Like ah, y- y- you lift them, and then you put... put them closer to to the couch, and then you can work there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":225.46967313617827,"end":228.6107429075949,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":225.46967313617827,"end":228.6107429075949,"channel":0,"text":["But definitely, I would go for a lower height one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":232.0487697095317,"end":232.52464916434107,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":232.0487697095317,"end":232.52464916434107,"channel":0,"text":["Mm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":236.3149672648445,"end":255.7693331378831,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":236.3149672648445,"end":255.7693331378831,"channel":0,"text":["Yeah, I I wouldn't I wouldn't put like the laptop close by to the s- to the statues because, in that case you would be uh moving the laptop or just working there and then... I mean you're really close to the statues and then maybe some ah accident happens and then you break some of uh the statues. So I I wouldn't do that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":255.8664944802224,"end":266.00810159414834,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":255.8664944802224,"end":266.00810159414834,"channel":0,"text":["I I I think this is more of a static area in which, you don't want, nothing much to happen because it's more of a a place to actually eh l- take a look."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":266.4860897038497,"end":268.94135096845565,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":266.4860897038497,"end":268.94135096845565,"channel":0,"text":["But uh but yeah, I don't I don't know."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":269.1116705915341,"end":271.3916817892478,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":269.1116705915341,"end":271.3916817892478,"channel":0,"text":["I don't think uh I would put the laptop there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":271.59586536155354,"end":273.54411498321286,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":271.59586536155354,"end":273.54411498321286,"channel":0,"text":["Maybe you can put it on the desk as well."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":278.9720549953851,"end":279.32608296349594,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":278.9720549953851,"end":279.32608296349594,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":281.04544938716714,"end":284.63076887948324,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":281.04544938716714,"end":284.63076887948324,"channel":0,"text":["I think uh the black one would be the best uh choice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":285.1478783536577,"end":293.27891697441083,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":285.1478783536577,"end":293.27891697441083,"channel":0,"text":["Uh yeah, the brown one, it's i- l- it's looks a little bit flat in this furniture, because uh it's the same color of the furniture."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":293.59129083526824,"end":300.74367223799686,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":293.59129083526824,"end":300.74367223799686,"channel":0,"text":["But eve- but if you wish to actually change the color of the furniture, maybe the brown one, it would be a better choice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":306.53856931975184,"end":309.3366305879475,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":306.53856931975184,"end":309.3366305879475,"channel":0,"text":["Yeah, I think ah maybe you should just keep one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":309.83148315138874,"end":312.82895155246985,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":309.83148315138874,"end":312.82895155246985,"channel":0,"text":["Because now with the two of them, it's a little bit too much."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":313.2718981730364,"end":317.31679418875683,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":313.2718981730364,"end":317.31679418875683,"channel":0,"text":["So maybe if you just keep one of them, eh I would go definitely for that one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":317.77871391795503,"end":318.4505437365095,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":317.77871391795503,"end":318.4505437365095,"channel":0,"text":["Eh."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":318.9465453958899,"end":319.80938565305297,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":318.9465453958899,"end":319.80938565305297,"channel":0,"text":["The gray one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":320.978,"end":327.1568763323737,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":320.978,"end":327.1568763323737,"channel":0,"text":["Because really, it's not uh... [I_mean], it it matches better with the whole uh room."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":327.6628478698584,"end":330.64035755208437,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":327.6628478698584,"end":330.64035755208437,"channel":0,"text":["This one, it looks like trash can from the street."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":331.5752709706089,"end":334.0744395204311,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":331.5752709706089,"end":334.0744395204311,"channel":0,"text":["The blue one looks like the trash can from the street."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":334.0744395204311,"end":334.447,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":334.0744395204311,"end":334.447,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":334.447,"end":343.59571524073635,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":334.447,"end":343.59571524073635,"channel":0,"text":["So, it it I mean, I would keep that inside a a a drawer or inside a cupboard, something like that, hidden, like not to be visible for the people."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":343.59571524073635,"end":343.97091500020304,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":343.59571524073635,"end":343.97091500020304,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":344.82682514913773,"end":345.33893072161425,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":344.82682514913773,"end":345.33893072161425,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":349.49694746969953,"end":350.21323661448184,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":349.49694746969953,"end":350.21323661448184,"channel":0,"text":["Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":350.82700040390006,"end":351.4609574630752,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":350.82700040390006,"end":351.4609574630752,"channel":0,"text":["Yeah, yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":351.4609574630752,"end":354.14381778798236,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":351.4609574630752,"end":354.14381778798236,"channel":0,"text":["I think, yeah, you should keep a maximum of two."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":354.14381778798236,"end":354.8041211145518,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":354.14381778798236,"end":354.8041211145518,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":355.6853374254191,"end":363.22653477184576,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":355.6853374254191,"end":363.22653477184576,"channel":0,"text":["But as I was saying, maybe if you move the TV on the upper part of the fireplace, then maybe you can put one, there, in in the place of the TV."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":363.22653477184576,"end":363.53939669715294,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":363.22653477184576,"end":363.53939669715294,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":363.53939669715294,"end":365.01031924059964,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":363.53939669715294,"end":365.01031924059964,"channel":0,"text":["And then this one, I think it's perfect."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":365.01031924059964,"end":367.3021649390851,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":365.01031924059964,"end":367.3021649390851,"channel":0,"text":["Even the the color pick is really nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":367.3021649390851,"end":367.56778128183595,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":367.3021649390851,"end":367.56778128183595,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":367.56778128183595,"end":378.89933226136014,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":367.56778128183595,"end":378.89933226136014,"channel":0,"text":["But from the rest, if you have to pick one and we would have like this grayish walls, I would go for this one, ah to keep and just put it there, even because it goes with the eh"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":378.89933226136014,"end":379.13,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":378.89933226136014,"end":379.13,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":379.13,"end":386.2157452477821,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":379.13,"end":386.2157452477821,"channel":0,"text":["theme, so you would have landscape and landscape, because the other two I think they are a little bit different in in the theme"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":387.2982498841494,"end":387.6045252426081,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":387.2982498841494,"end":387.6045252426081,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":387.6045252426081,"end":395.7528358350426,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":387.6045252426081,"end":395.7528358350426,"channel":0,"text":["I think you should remove this one and that one, and this one move it there and the TV move it... on top of the mm fireplace."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":399.7872004503231,"end":399.946,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":399.7872004503231,"end":399.946,"channel":0,"text":["Yeh."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":406.0091842717734,"end":426.8015827740269,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":406.0091842717734,"end":426.8015827740269,"channel":0,"text":["Ah yes, yes, you definitely eh purchase one of those... small um... arrangements for the the next of... [spn] for the side of the... so [spn] where you put... place your arm, and then you can just put put it there even with the control uh the the the control of the TV... the remote control. So uh you can put everything there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":426.8015827740269,"end":426.9547204532562,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":426.8015827740269,"end":426.9547204532562,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":426.9547204532562,"end":427.634792961694,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":426.9547204532562,"end":427.634792961694,"channel":0,"text":["I think that would..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":429.21334427135787,"end":429.5860918345526,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":429.21334427135787,"end":429.5860918345526,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":429.5860918345526,"end":434.690520049179,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":429.5860918345526,"end":434.690520049179,"channel":0,"text":["Yeah, I think uh you can buy one of those um... places where you can keep it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":434.690520049179,"end":435.09086248486193,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":434.690520049179,"end":435.09086248486193,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":435.09086248486193,"end":442.79307769637603,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":435.09086248486193,"end":442.79307769637603,"channel":0,"text":["Like uh they're... nn they come in different uh... colors and yeah, it's like a little bit more organized in that sense."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":445.59934956225777,"end":446.8,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":445.59934956225777,"end":446.8,"channel":0,"text":["Okay. You're welcome."]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":"Jim jaoregan@tcd.ie, 1","created_ago":"0 minutes","completed_by":1,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-22T15:57:00.316425Z","updated_at":"2024-09-22T15:57:56.361678Z","draft_created_at":null,"lead_time":1.584,"import_id":null,"last_action":null,"task":109,"project":8,"updated_by":1,"parent_prediction":null,"parent_annotation":null,"last_created_by":null} {"id":233,"result":[{"value":{"start":19.74040067595523,"end":23.278808182430314,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":19.74040067595523,"end":23.278808182430314,"channel":0,"text":["Okay, yeah, you're not uh in the middle of anything."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":29.223426268334755,"end":38.59067652242679,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":29.223426268334755,"end":38.59067652242679,"channel":0,"text":["Yeah, I mean, I have my my you know thoughts about it, because I think I didn't really catch the... the essence of the place."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":38.853733006374135,"end":47.8098425344818,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":38.853733006374135,"end":47.8098425344818,"channel":0,"text":["So I I was planning to do some changes, but um but do you have some uh suggestion that you think that I should uh change?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":53.949096657955316,"end":54.26787764404492,"channel":0,"labels":["Laughter"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":53.949096657955316,"end":54.26787764404492,"channel":0,"text":["laughter"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":54.513604654155664,"end":60.992087270473085,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":54.513604654155664,"end":60.992087270473085,"channel":0,"text":["No, of course I am, I am, but uh but you know, I don't know, I am a little bit in doubt about that paint there, the flower ones."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":61.231173010040294,"end":67.1415336964601,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":61.231173010040294,"end":67.1415336964601,"channel":0,"text":["So I don't know, I am uh not fully, but that that's that's mainly the the only thing."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":70.02854154368154,"end":75.44117703666129,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":70.02854154368154,"end":75.44117703666129,"channel":0,"text":["Yeah, that's true. I mean, they are the same size and they are a little bit, but I think I I should go more for something that style."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":76.97796777173882,"end":93.04253021998692,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":76.97796777173882,"end":93.04253021998692,"channel":0,"text":["The yeah the tree one like just go uh or or get one on that style on the outside. I think the the they are not uh matching styles and that l- that little bit bothers me. But I think I did a really great work with the plants there on the roof, hanging on the roof that I really like."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":93.33287716397876,"end":101.53400787098319,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":93.33287716397876,"end":101.53400787098319,"channel":0,"text":["It's a little bit... hassle to water them, but [laughter] now I purchased a system that it does it by itself."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":101.74503454497805,"end":102.67157631294795,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":101.74503454497805,"end":102.67157631294795,"channel":0,"text":["So it's great."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":102.752,"end":107.23106618925661,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":102.752,"end":107.23106618925661,"channel":0,"text":["You know, it costs a little bit of a fortune, but you know, it's, it's, it's okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":108.2730637089731,"end":108.64934486365082,"channel":0,"labels":["Laughter"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":108.2730637089731,"end":108.64934486365082,"channel":0,"text":["laughter"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":109.28457218928958,"end":109.79639548032972,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":109.28457218928958,"end":109.79639548032972,"channel":0,"text":["[laughter] Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":114.28637984418647,"end":114.36730052261179,"channel":0,"labels":["Noise"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":114.28637984418647,"end":114.36730052261179,"channel":0,"text":["smack"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":116.12348954599807,"end":120.4714078585046,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":116.12348954599807,"end":120.4714078585046,"channel":0,"text":["Yeah, I mean, they all have my, you know, a little bit of a piece of my heart."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":120.88111280317389,"end":122.5494346246146,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":120.88111280317389,"end":122.5494346246146,"channel":0,"text":["But eh that one is my favorite."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":122.67579491352062,"end":123.00352366114316,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":122.67579491352062,"end":123.00352366114316,"channel":0,"text":["Like..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":123.54771522355342,"end":124.08682673713689,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":123.54771522355342,"end":124.08682673713689,"channel":0,"text":["I real-"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":124.36398006074361,"end":126.20781523266076,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":124.36398006074361,"end":126.20781523266076,"channel":0,"text":["Ah yeah, and on the small table."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":127.3487625374653,"end":130.48414925104686,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":127.3487625374653,"end":130.48414925104686,"channel":0,"text":["Yeah, ah I really like that one. It's, uh it's really nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":130.74439550317862,"end":140.08897490518947,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":130.74439550317862,"end":140.08897490518947,"channel":0,"text":["I think I I should purchase a a nicer vase for the, like, nicer pot, because uh it's growing and I think I need to replant it soon."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":140.40666583643306,"end":145.21914436223724,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":140.40666583643306,"end":145.21914436223724,"channel":0,"text":["So but but yes, I think ah i- it's, that is the one that I like the most."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":150.3336960771225,"end":157.28036747069402,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":150.3336960771225,"end":157.28036747069402,"channel":0,"text":["Yeah, it's but this one is especially... designed for that. So it's a really it's it's a plant that doesn't require that much light."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":157.68485933340392,"end":160.52973180886852,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":157.68485933340392,"end":160.52973180886852,"channel":0,"text":["So uh it's it's good f- for that purpose."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":160.84098684540638,"end":169.35758591699545,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":160.84098684540638,"end":169.35758591699545,"channel":0,"text":["So that's why I k- I keep it here, because now in the summer, then you know a lot of light enters through the windows, and then it it's too much for for it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":169.35758591699545,"end":174.46035562208334,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":169.35758591699545,"end":174.46035562208334,"channel":0,"text":["As you can see, the the upper part... of the leaves is a little bit uh you know not good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":174.8249427872456,"end":177.15947009882365,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":174.8249427872456,"end":177.15947009882365,"channel":0,"text":["It's because I moved it quite recently."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":177.53759622447902,"end":184.43307003580344,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":177.53759622447902,"end":184.43307003580344,"channel":0,"text":["So basically eh in winter my plan is to put it next to the window, but now as it doesn't require that much sun I moved it here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":184.52987452265626,"end":188.59887180900293,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":184.52987452265626,"end":188.59887180900293,"channel":0,"text":["It's a l- little bit of a big plant so that's ah a little bit complicated to move."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":194.37090403609417,"end":200.38021299899194,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":194.37090403609417,"end":200.38021299899194,"channel":0,"text":["Yeah yeah, I wanted to to l- give a little bit of a pop-up color ah to both of them."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":200.60297898856916,"end":205.18150624022735,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":200.60297898856916,"end":205.18150624022735,"channel":0,"text":["So, you know, ah just to to cheer up th- the the room."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":205.5366298975852,"end":207.1077574828061,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":205.5366298975852,"end":207.1077574828061,"channel":0,"text":["So that that was my whole plan."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":207.33527797051784,"end":208.3155822941153,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":207.33527797051784,"end":208.3155822941153,"channel":0,"text":["Ah... So, yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":213.05000001634778,"end":213.32246282261985,"channel":0,"labels":["Noise"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":213.05000001634778,"end":213.32246282261985,"channel":0,"text":["spn"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":213.32246282261985,"end":215.4656496389662,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":213.32246282261985,"end":215.4656496389662,"channel":0,"text":["From the walls, you mean, or the w- the the pillow?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":217.4169190933971,"end":228.28599184743956,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":217.4169190933971,"end":228.28599184743956,"channel":0,"text":["Aha, yeah, but ah it's just, you know, to do while you watch TV or something and you want to... to put it like in your knees or like on your head. So it's not, I don't eat at all in the couch."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":228.5528368638916,"end":235.40881926071427,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":228.5528368638916,"end":235.40881926071427,"channel":0,"text":["So uh I don't think... maybe and I if I drink, I drink just water, things like that. So I don't, I don't, I'm not afraid."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":235.62510416878592,"end":243.5897510375431,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":235.62510416878592,"end":243.5897510375431,"channel":0,"text":["But anyways, they are both ah impermeable and the filling can be removed so I can actually wash them, on the washing machine."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":246.46397256699902,"end":247.6015750055577,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":246.46397256699902,"end":247.6015750055577,"channel":0,"text":["Yeah, yeah, yeah, yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":247.90248064210118,"end":249.50916853063342,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":247.90248064210118,"end":249.50916853063342,"channel":0,"text":["Yeah, sometimes I I I work."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":249.762,"end":252.81765791128066,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":249.762,"end":252.81765791128066,"channel":0,"text":["I was just checking some some things from work."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":253.18281424958346,"end":259.70223866771806,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":253.18281424958346,"end":259.70223866771806,"channel":0,"text":["But um but yeah, normally I have uh a desk eh in another room."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":263.29936501007836,"end":267.4486407510176,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":263.29936501007836,"end":267.4486407510176,"channel":0,"text":["Well, that's a that's a really good uh observation, actually."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":267.93382259176053,"end":269.13059590109606,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":267.93382259176053,"end":269.13059590109606,"channel":0,"text":["Yeah, it has been there. I mean..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":269.52384118849903,"end":275.102,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":269.52384118849903,"end":275.102,"channel":0,"text":["Ah, yeah, I should maybe purchase a auxiliary table for the laptop."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":278.2599296106449,"end":286.3748063376716,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":278.2599296106449,"end":286.3748063376716,"channel":0,"text":["Yeah, I was I was thinking more of one that can actually fit the height, because that one there that has the statue, first of all, it has the statue."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":286.6978292523241,"end":290.0343155432384,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":286.6978292523241,"end":290.0343155432384,"channel":0,"text":["And second of all, ah it's a little bit too low for me."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":290.26729829142687,"end":293.29607253144405,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":290.26729829142687,"end":293.29607253144405,"channel":0,"text":["So I was thinking of getting something a little bit uh higher."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":295.20351052717655,"end":295.72877387535056,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":295.20351052717655,"end":295.72877387535056,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":298.3056699160255,"end":298.4236435022464,"channel":0,"labels":["Noise"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":298.3056699160255,"end":298.4236435022464,"channel":0,"text":["smack"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":298.6708262543283,"end":300.5556867777859,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":298.6708262543283,"end":300.5556867777859,"channel":0,"text":["Yeah, I really enjoy reading."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":300.5950113065262,"end":305.7653806408364,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":300.5950113065262,"end":305.7653806408364,"channel":0,"text":["So ah I I said, okay, I I deserve my space to actually do this."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":305.9985189183682,"end":313.8249427613483,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":305.9985189183682,"end":313.8249427613483,"channel":0,"text":["So that's why I have this uh with the little lamp and you know, in the night, I just turn everything off and just keep a lamp and it's really cozy."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":315.4394844335862,"end":315.4956623317866,"channel":0,"labels":["Noise"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":315.4394844335862,"end":315.4956623317866,"channel":0,"text":["click"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":315.6136359180075,"end":315.9507033072101,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":315.6136359180075,"end":315.9507033072101,"channel":0,"text":["Sorry?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":317.6472123423532,"end":318.16404900579715,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":317.6472123423532,"end":318.16404900579715,"channel":0,"text":["This one?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":318.6443700354108,"end":322.3284800811485,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":318.6443700354108,"end":322.3284800811485,"channel":0,"text":["Yeah, it's because otherwise this ah area was a little bit dark."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":322.86508532195745,"end":331.21070880328705,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":322.86508532195745,"end":331.21070880328705,"channel":0,"text":["Ah but uh so yeah, a- as you can see, you have one here, one there, one there. So it's crossing the room, and it keeps it uh the whole room illuminated."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":331.4146615460182,"end":337.76340831449915,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":331.4146615460182,"end":337.76340831449915,"channel":0,"text":["But ah actually, you can turn them on separately, which is really nice. So you can have different areas illuminated in the room."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":338.07886783610707,"end":352.4282676966609,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":338.07886783610707,"end":352.4282676966609,"channel":0,"text":["sometimes when I am reading and I feel that I don't have that much light [smack] I just turn that on. But uh otherwise I just keep this setup here with the small lamp and the chair and I just read something have a glass of wine or something that's really nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":357.6320012095461,"end":358.256,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":357.6320012095461,"end":358.256,"channel":0,"text":["Thank you very mu-"]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":"Jim jaoregan@tcd.ie, 1","created_ago":"0 minutes","completed_by":1,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-22T15:57:04.496875Z","updated_at":"2024-09-22T15:57:56.488669Z","draft_created_at":null,"lead_time":1.422,"import_id":null,"last_action":null,"task":110,"project":8,"updated_by":1,"parent_prediction":null,"parent_annotation":null,"last_created_by":null} {"id":234,"result":[{"value":{"start":6.658212874122951,"end":7.900130465763701,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":6.658212874122951,"end":7.900130465763701,"channel":0,"text":["Should I go to t-pose?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":11.310160819418861,"end":13.083380054542285,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":11.310160819418861,"end":13.083380054542285,"channel":0,"text":["I am ah watching you, yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":17.085101454683993,"end":18.579387326979013,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":17.085101454683993,"end":18.579387326979013,"channel":0,"text":["You were standing there, yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":26.676579746124887,"end":31.425088184751285,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":26.676579746124887,"end":31.425088184751285,"channel":0,"text":["Yeah, I mean, I think uh you can give you some, you can give it some personal touches."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":31.833047838112687,"end":45.56589934998821,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":31.833047838112687,"end":45.56589934998821,"channel":0,"text":["I mean, eh you told me before that you uh were into this eclectic style, so I think the, the carpet gives uh really that vibe, but maybe you need some other items that can give this look."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":45.75185492520715,"end":50.17778325740626,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":45.75185492520715,"end":50.17778325740626,"channel":0,"text":["For example, the lamp in the back, maybe it's a little bit generic, that one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":51.06774478597759,"end":56.93584834773102,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":51.06774478597759,"end":56.93584834773102,"channel":0,"text":["It's a little bit generic, you can go for something uh more bold in terms of uh style."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":57.24740137090288,"end":63.250924803378304,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":57.24740137090288,"end":63.250924803378304,"channel":0,"text":["So it would actually fit better with the whole room and with the carpet itself."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":66.59395575922387,"end":73.62125437701096,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":66.59395575922387,"end":73.62125437701096,"channel":0,"text":["Yes, that o- that that is a little bit better, you know, towards the the look of the room. I think that is that is better."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":73.98312669006307,"end":82.60355840704517,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":73.98312669006307,"end":82.60355840704517,"channel":0,"text":["But also the couch, I think, um yeah, the brown, it's a little bit ah too plain for this room."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":84.31765545112673,"end":96.2686074141204,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":84.31765545112673,"end":96.2686074141204,"channel":0,"text":["Ah, the black one is better, and I think also if you can put some uh spots of color with the with the blanket and with the pillow and this kind of things, it would actually look better."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":102.45048818113945,"end":102.74934535559845,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":102.45048818113945,"end":102.74934535559845,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":107.21654238616175,"end":114.44972039079832,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":107.21654238616175,"end":114.44972039079832,"channel":0,"text":["Ehm yeah, maybe maybe you can you can have a small table, like a coffee table ah in in in the green."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":115.0357896883488,"end":117.84504712826343,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":115.0357896883488,"end":117.84504712826343,"channel":0,"text":["That ah that I think uh might look nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":118.47803814885202,"end":125.4789880990816,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":118.47803814885202,"end":125.4789880990816,"channel":0,"text":["Ah but maybe that green, it's a little bit too uh saturated. Maybe you can go for something more pastel."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":125.66494367430055,"end":135.43734248439873,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":125.66494367430055,"end":135.43734248439873,"channel":0,"text":["Because these colors here, I mean, you have blue, orange. I mean, [smack] I am basing everything with the carpet because I think it's a really nice um item and you you like to keep it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":135.64322187124824,"end":164.13452270890957,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":135.64322187124824,"end":164.13452270890957,"channel":0,"text":["So maybe orange, that would be also another option and maybe you can keep really small ah... Maybe a smaller cushion for... uh in green so you have a little bit more of contrast. But I was a little bit worried about this situation here. Ah yes, because eh that statue there it doesn't look good because maybe you can move this um couch a little bit back, and then put it in between both couches because... it it doesn't"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":164.83185611598057,"end":167.1629420767608,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":164.83185611598057,"end":167.1629420767608,"channel":0,"text":["Y- you are not able to see it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":169.08634735027204,"end":172.84530647791195,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":169.08634735027204,"end":172.84530647791195,"channel":0,"text":["Th- this armchair, the black one, you move it a little bit back."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":173.80912508945303,"end":176.3460904370828,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":173.80912508945303,"end":176.3460904370828,"channel":0,"text":["And then you move the table a little bit forward."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":176.68924359899052,"end":183.22165935397598,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":176.68924359899052,"end":183.22165935397598,"channel":0,"text":["And then you would have an option to actually see the statue, because otherwise eh you don't see it at all."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":183.7379183792488,"end":189.72859209987035,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":183.7379183792488,"end":189.72859209987035,"channel":0,"text":["And also the trash can in the back, I wouldn't really put it there. It's it it doesn't look good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":189.9121070783789,"end":191.4794469266528,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":189.9121070783789,"end":191.4794469266528,"channel":0,"text":["There is there is a trash can."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":192.03311297847645,"end":196.55526280198615,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":192.03311297847645,"end":196.55526280198615,"channel":0,"text":["Yeah, and that that doesn't look good, because it's too plastic."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":196.61503423687793,"end":211.09959729993997,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":196.61503423687793,"end":211.09959729993997,"channel":0,"text":["H- I I I w- I would ah purchase something metallic or things like this, and maybe not put it like, just there, maybe put it in in some other corner of the room, like here, there is nothing, so something more like open."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":212.26360389164287,"end":214.83267210247777,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":212.26360389164287,"end":214.83267210247777,"channel":0,"text":["I think that that would that would uh go better."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":215.12266923143923,"end":220.94397677592988,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":215.12266923143923,"end":220.94397677592988,"channel":0,"text":["And even, for example, the statue there, close to the TV, I think eh it's distracting from the TV."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":225.00286383216908,"end":225.15868318504388,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":225.00286383216908,"end":225.15868318504388,"channel":0,"text":["Y-"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":225.67881735961896,"end":233.08941277805556,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":225.67881735961896,"end":233.08941277805556,"channel":0,"text":["Yeah, but I think it would be nice for you to have a a spa- a space specifically designed for the statues."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":233.28418696914906,"end":239.87123628640566,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":233.28418696914906,"end":239.87123628640566,"channel":0,"text":["Maybe you can put a shelf or something where you can actually put them, and then it's a place for the statues to actually..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":240.8256298227638,"end":241.57875669499202,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":240.8256298227638,"end":241.57875669499202,"channel":0,"text":["Yeah, I think..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":242.5009719276072,"end":252.76113132071987,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":242.5009719276072,"end":252.76113132071987,"channel":0,"text":["you can do the thing with the moving, or maybe put both of them on the same table, or maybe you can actually put one here and get another table, small one, eh to put the other one, or maybe a shelf."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":252.89164609774818,"end":254.85395402082014,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":252.89164609774818,"end":254.85395402082014,"channel":0,"text":["That'll... That also would be a good idea."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":255.76704914317529,"end":256.27327141258826,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":255.76704914317529,"end":256.27327141258826,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":262.81590878042385,"end":263.19030805885916,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":262.81590878042385,"end":263.19030805885916,"channel":0,"text":["Mhm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":269.87728988420076,"end":273.6845291394332,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":269.87728988420076,"end":273.6845291394332,"channel":0,"text":["I think it's ah there are two different situations here, and it's OK."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":274.1492511580886,"end":278.11840977504784,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":274.1492511580886,"end":278.11840977504784,"channel":0,"text":["But I think that chair there, it's a little bit maybe not that comfortable."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":278.34997464668123,"end":282.8181491470071,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":278.34997464668123,"end":282.8181491470071,"channel":0,"text":["I mean, I don't know, uh you use this space for reading or something like..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":283.93776620793903,"end":293.8620176812911,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":283.93776620793903,"end":293.8620176812911,"channel":0,"text":["Ah okay, but then maybe you need a yeah, you need a more comfortable space because I think uh the area is not uh... that that chair is not uh... Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":295.38127879046954,"end":295.4548601515493,"channel":0,"labels":["Noise"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":295.38127879046954,"end":295.4548601515493,"channel":0,"text":["click"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":295.6409777119276,"end":303.6486900222878,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":295.6409777119276,"end":303.6486900222878,"channel":0,"text":["Yeah, it's really inspiring but I would maybe uh... Get something more comfortable reclinable like y- you can lay it down a little bit."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":304.21983702206535,"end":308.2969530895,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":304.21983702206535,"end":308.2969530895,"channel":0,"text":["Maybe something like that. Maybe some focal light that comes directly on top."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":312.85465419235123,"end":313.33942551240614,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":312.85465419235123,"end":313.33942551240614,"channel":0,"text":["Mm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":315.7234339433469,"end":316.2666375207299,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":315.7234339433469,"end":316.2666375207299,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":320.6749004741076,"end":321.015,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":320.6749004741076,"end":321.015,"channel":0,"text":["Thank you."]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":"Jim jaoregan@tcd.ie, 1","created_ago":"0 minutes","completed_by":1,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-22T15:57:09.436720Z","updated_at":"2024-09-22T15:57:56.610116Z","draft_created_at":null,"lead_time":2.07,"import_id":null,"last_action":null,"task":111,"project":8,"updated_by":1,"parent_prediction":null,"parent_annotation":null,"last_created_by":null} {"id":235,"result":[{"value":{"start":12.430852578624894,"end":12.882458975585166,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":12.430852578624894,"end":12.882458975585166,"channel":0,"text":["Uh-huh."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":13.964108120776258,"end":21.18794574019845,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":13.964108120776258,"end":21.18794574019845,"channel":0,"text":["Yes, it has been a long time, and you have been a really good uh tenant as far as I can see, right?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":22.46410719948783,"end":31.450416107814505,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":22.46410719948783,"end":31.450416107814505,"channel":0,"text":["So that's good. The the carpet seems to be clean, which is good because this carpet is really hard to clean. So you did a great job there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":33.27519342647898,"end":35.57639366981331,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":33.27519342647898,"end":35.57639366981331,"channel":0,"text":["And yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":38.00975902087836,"end":40.45706721617043,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":38.00975902087836,"end":40.45706721617043,"channel":0,"text":["So did you face any difficulties here?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":43.02989924864967,"end":44.846286742306056,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":43.02989924864967,"end":44.846286742306056,"channel":0,"text":["Everything went well, okay, great."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":45.84844137910844,"end":47.6581876022213,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":45.84844137910844,"end":47.6581876022213,"channel":0,"text":["Might it be that you changed the lamp?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":48.95064267460335,"end":49.89702372705686,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":48.95064267460335,"end":49.89702372705686,"channel":0,"text":["That one there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":52.17109049807835,"end":54.644963775544554,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":52.17109049807835,"end":54.644963775544554,"channel":0,"text":["Ah, it was a different color or you painted it?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":60.61775867430795,"end":66.1923192552007,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":60.61775867430795,"end":66.1923192552007,"channel":0,"text":["Y- yes, please, because uh I I don't think this color matches the decoration of the place."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":66.90669113916043,"end":69.56319935657379,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":66.90669113916043,"end":69.56319935657379,"channel":0,"text":["Yeah, I I think it's it's for the best."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":70.72405035901866,"end":74.34768330518223,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":70.72405035901866,"end":74.34768330518223,"channel":0,"text":["Yeah, and I I I I see you did [a] great job with the plants."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":74.34768330518223,"end":75.26740736246037,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":74.34768330518223,"end":75.26740736246037,"channel":0,"text":["That is really nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":75.56294390164761,"end":78.53062196820105,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":75.56294390164761,"end":78.53062196820105,"channel":0,"text":["Those ones on the roof, uh you actually um..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":80.20414714430146,"end":82.70126486867002,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":80.20414714430146,"end":82.70126486867002,"channel":0,"text":["You actually put them by yourself?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":83.88636400868579,"end":84.42762755798375,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":83.88636400868579,"end":84.42762755798375,"channel":0,"text":["Uh-huh."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":89.32922860664006,"end":93.78756234695054,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":89.32922860664006,"end":93.78756234695054,"channel":0,"text":["Yeah, but but I am not sure that we should keep them there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":94.187,"end":98.60685855334634,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":94.187,"end":98.60685855334634,"channel":0,"text":["Because I I mean, you know how to uh water them and everything."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":98.85590619872883,"end":102.48782014476807,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":98.85590619872883,"end":102.48782014476807,"channel":0,"text":["But if a new tenant comes, I don't feel that they are gonna..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":103.072251952599,"end":108.29343693987981,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":103.072251952599,"end":108.29343693987981,"channel":0,"text":["know how to deal with this. So I think maybe you just remove them and and just cover the holes, please."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":110.3080926834362,"end":111.51016265181575,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":110.3080926834362,"end":111.51016265181575,"channel":0,"text":["Okay, okay, perfect."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":111.857,"end":114.66812061952842,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":111.857,"end":114.66812061952842,"channel":0,"text":["Because, yeah, I don't I don't think they will..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":115.4385080025783,"end":117.29496076976083,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":115.4385080025783,"end":117.29496076976083,"channel":0,"text":["be really able to do that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":118.39773815538476,"end":119.94515419202806,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":118.39773815538476,"end":119.94515419202806,"channel":0,"text":["And ah..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":122.28320789874915,"end":124.1427636509385,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":122.28320789874915,"end":124.1427636509385,"channel":0,"text":["Ah did you change the curtains?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":125.9370530377559,"end":127.5143547918451,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":125.9370530377559,"end":127.5143547918451,"channel":0,"text":["I mean, they were grey."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":132.90441570084855,"end":136.63149864183666,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":132.90441570084855,"end":136.63149864183666,"channel":0,"text":["Yeah, but but I mean, it's because in summer there's so much light coming in."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":136.9871161791818,"end":140.2956902507949,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":136.9871161791818,"end":140.2956902507949,"channel":0,"text":["So uh it was just to keep the room a little bit dark."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":141.0428500990736,"end":145.0961751613609,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":141.0428500990736,"end":145.0961751613609,"channel":0,"text":["So uh yeah, if you could put them back it's, it would be really nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":146.70892521190095,"end":148.4190523768608,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":146.70892521190095,"end":148.4190523768608,"channel":0,"text":["Um [breath]"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":152.83625906423782,"end":153.23141466157804,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":152.83625906423782,"end":153.23141466157804,"channel":0,"text":["Uh-huh."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":155.50949619527373,"end":156.99312603435104,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":155.50949619527373,"end":156.99312603435104,"channel":0,"text":["Yeah, please change it back."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":157.19236415065703,"end":162.84231256426298,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":157.19236415065703,"end":162.84231256426298,"channel":0,"text":["But though ah I mean, the green one, yeah, change it back. But the other one, I think it's nice. You can... you can"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":164.27967115980047,"end":168.0814308939683,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":164.27967115980047,"end":168.0814308939683,"channel":0,"text":["Ah okay, okay, then yeah, okay. [laughter] He dressed my own decorations."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":168.6426182548969,"end":169.84136758800466,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":168.6426182548969,"end":169.84136758800466,"channel":0,"text":["Um..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":171.05795835053596,"end":174.06515756495304,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":171.05795835053596,"end":174.06515756495304,"channel":0,"text":["Ah that that that bin there was not the one that was here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":175.61310081512735,"end":181.64079869718,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":175.61310081512735,"end":181.64079869718,"channel":0,"text":["The the black bin, trash can ah it was it was not like that that... it was a metal one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":182.72365227117328,"end":183.12544913905705,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":182.72365227117328,"end":183.12544913905705,"channel":0,"text":["Wh- what?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":186.6741464651684,"end":193.89577596511978,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":186.6741464651684,"end":193.89577596511978,"channel":0,"text":["Ah, okay, perfect, but this one you can take it with you because it's yours and then ah let's just bring back the the metal one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":194.45032205550484,"end":197.62176330243818,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":194.45032205550484,"end":197.62176330243818,"channel":0,"text":["I think uh it it it it fits better with the room."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":202.81156549233572,"end":203.28641633619836,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":202.81156549233572,"end":203.28641633619836,"channel":0,"text":["Uh-huh."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":205.01739600258733,"end":206.14048176397804,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":205.01739600258733,"end":206.14048176397804,"channel":0,"text":["Okay, perfect."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":207.05467706651362,"end":208.8112931252782,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":207.05467706651362,"end":208.8112931252782,"channel":0,"text":["Ah perfect perfect. That's great."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":209.2445066148075,"end":210.27722418432694,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":209.2445066148075,"end":210.27722418432694,"channel":0,"text":["Thank... thank you for that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":210.6923035932978,"end":211.41620208254292,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":210.6923035932978,"end":211.41620208254292,"channel":0,"text":["Um."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":213.1872470224579,"end":218.527957967391,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":213.1872470224579,"end":218.527957967391,"channel":0,"text":["And you reported that uh one of the statues uh fell while you were here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":219.59309584922448,"end":223.12314879337742,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":219.59309584922448,"end":223.12314879337742,"channel":0,"text":["Yeah, but um... uh what what what happened?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":223.24533508316168,"end":225.17130354078637,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":223.24533508316168,"end":225.17130354078637,"channel":0,"text":["Ah, it lost the arm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":226.0686030158281,"end":226.64639355311553,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":226.0686030158281,"end":226.64639355311553,"channel":0,"text":["inhale"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":227.71895874589617,"end":228.40300961188012,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":227.71895874589617,"end":228.40300961188012,"channel":0,"text":["exhale"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":228.48372546120225,"end":229.63266526523356,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":228.48372546120225,"end":229.63266526523356,"channel":0,"text":["Did you keep the arm?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":231.83187141707285,"end":235.54395708677177,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":231.83187141707285,"end":235.54395708677177,"channel":0,"text":["Okay, that's great, because maybe I can just send it for restoration."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":235.99738703906644,"end":246.05496479836992,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":235.99738703906644,"end":246.05496479836992,"channel":0,"text":["And then uh maybe, yeah, you would just need to cover what's uh taken from the work of doing the restoration, because uh I don't want to charge you with the whole statue."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":246.34718070228539,"end":250.29968227761742,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":246.34718070228539,"end":250.29968227761742,"channel":0,"text":["So maybe we can actually ah reach an agreement there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":252.99738519648898,"end":253.49215985198222,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":252.99738519648898,"end":253.49215985198222,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":256.2174315436966,"end":262.34062489609556,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":256.2174315436966,"end":262.34062489609556,"channel":0,"text":["Ah now you can see the paints; you you, you didn't touch anything, right?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":263.64716546209945,"end":267.1547769118848,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":263.64716546209945,"end":267.1547769118848,"channel":0,"text":["Ah because ah I mean uh regarding the cleaning"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":267.9032500140981,"end":271.01158227873657,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":267.9032500140981,"end":271.01158227873657,"channel":0,"text":["and uh the procedures you use for cleaning them"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":271.817618696371,"end":283.1649161950542,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":271.817618696371,"end":283.1649161950542,"channel":0,"text":["because because I see some some a little bit stains on the on the on the mm [smack] on the glass so so I guess maybe you cleaned them, but you didn't ah pay close attention"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":287.8586473876546,"end":291.26764346995554,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":287.8586473876546,"end":291.26764346995554,"channel":0,"text":["Ah, okay, then then maybe that's why you should clean them."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":291.74581494908995,"end":297.7716142749376,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":291.74581494908995,"end":297.7716142749376,"channel":0,"text":["I mean, they they all have a frame and and [smack] and a glass, so ah you won't do any damage to it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":298.12321704960857,"end":302.1940401537906,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":298.12321704960857,"end":302.1940401537906,"channel":0,"text":["You can just clean it with a wet wipe, like you would clean a a window."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":302.93154765952005,"end":303.416360409198,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":302.93154765952005,"end":303.416360409198,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":309.776339468692,"end":310.19473951293463,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":309.776339468692,"end":310.19473951293463,"channel":0,"text":["Mhm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":314.4040056388946,"end":314.981796176182,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":314.4040056388946,"end":314.981796176182,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":317.2773926639039,"end":317.8120149426584,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":317.2773926639039,"end":317.8120149426584,"channel":0,"text":["Mhm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":318.47282136173993,"end":318.63885312532824,"channel":0,"labels":["Noise"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":318.47282136173993,"end":318.63885312532824,"channel":0,"text":["smack"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":319.11864742166335,"end":323.9889406738066,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":319.11864742166335,"end":323.9889406738066,"channel":0,"text":["Ah but yeah, y- y- you you know that you need to ask for permission to do this kind of things."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":325.1326781984926,"end":327.19479270225975,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":325.1326781984926,"end":327.19479270225975,"channel":0,"text":["Ah. [exhale] [inhale]"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":328.16333951007715,"end":333.30340717176796,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":328.16333951007715,"end":333.30340717176796,"channel":0,"text":["I mean, just just leave it like that. I mean, there's not much to do; if you actually painted it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":338.81844779229584,"end":343.8734921908556,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":338.81844779229584,"end":343.8734921908556,"channel":0,"text":["Ah, y- yeah, I I don't agree with you, but uh I mean, it is what it is."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":345.69504078724947,"end":345.900920174099,"channel":0,"labels":["Noise"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":345.69504078724947,"end":345.900920174099,"channel":0,"text":["noise"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":346.199777348558,"end":346.80081233274774,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":346.199777348558,"end":346.80081233274774,"channel":0,"text":["What to do?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":349.1626207877709,"end":352.1515020956271,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":349.1626207877709,"end":352.1515020956271,"channel":0,"text":["But I think uh, is is... is that a stain?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":354.3184136724159,"end":354.61062957633135,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":354.3184136724159,"end":354.61062957633135,"channel":0,"text":["Is that a?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":354.96261691513865,"end":357.2571758879294,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":354.96261691513865,"end":357.2571758879294,"channel":0,"text":["Is that a stain there on the couch?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":358.5163326945924,"end":364.07943428973255,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":358.5163326945924,"end":364.07943428973255,"channel":0,"text":["Yeah, on the down part it's a little bit ; clearer than the couch. Oh or is like..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":364.6710345816378,"end":369.0408067732803,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":364.6710345816378,"end":369.0408067732803,"channel":0,"text":["Or you put... your shoes there. I mean, I don't... I am not sure what is... what is wrong."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":369.38467267373795,"end":369.82631716488294,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":369.38467267373795,"end":369.82631716488294,"channel":0,"text":["But..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":370.61330772429164,"end":375.0766768300758,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":370.61330772429164,"end":375.0766768300758,"channel":0,"text":["Yeah it's, it's a little bit clearer than than the rest."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":375.4589682747275,"end":380.9411701945429,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":375.4589682747275,"end":380.9411701945429,"channel":0,"text":["I don't know if it's like uh just used or or there is a stain there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":386.2183295043058,"end":391.80859839602095,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":386.2183295043058,"end":391.80859839602095,"channel":0,"text":["Yes, please do that. Otherwise, I think you need to thoroughly clean it because it was not like that before."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":395.12344608617246,"end":396.4317763832485,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":395.12344608617246,"end":396.4317763832485,"channel":0,"text":["It was definitely not like that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":396.4317763832485,"end":396.7339541929793,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":396.4317763832485,"end":396.7339541929793,"channel":0,"text":["inhale"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":396.7339541929793,"end":399.3282990300273,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":396.7339541929793,"end":399.3282990300273,"channel":0,"text":["And in this one, there used to be a pillow. What happened with that one?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":400.6815461401008,"end":403.31148927534,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":400.6815461401008,"end":403.31148927534,"channel":0,"text":["In in the black uh couch. Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":405.9510266643894,"end":406.4922902136874,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":405.9510266643894,"end":406.4922902136874,"channel":0,"text":["Oh, OK."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":406.6051918129275,"end":411.75071322849107,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":406.6051918129275,"end":411.75071322849107,"channel":0,"text":["OK, good. If we can actually ah put it back, it would be perfect."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":413.85743498198957,"end":415.8814165926976,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":413.85743498198957,"end":415.8814165926976,"channel":0,"text":["And the rest I think you took good care."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":416.5103468251273,"end":417.9847088857917,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":416.5103468251273,"end":417.9847088857917,"channel":0,"text":["The flooring is good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":419.6933558829454,"end":420.5567210536048,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":419.6933558829454,"end":420.5567210536048,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":422.5716694482959,"end":423.06644410378914,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":422.5716694482959,"end":423.06644410378914,"channel":0,"text":["Mm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":425.3374828906735,"end":426.85169257459916,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":425.3374828906735,"end":426.85169257459916,"channel":0,"text":["I think uh..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":429.9317619389972,"end":431.483,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":429.9317619389972,"end":431.483,"channel":0,"text":["Yeah, I think uh it's it's okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":"Jim jaoregan@tcd.ie, 1","created_ago":"0 minutes","completed_by":1,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-22T15:57:14.153001Z","updated_at":"2024-09-22T15:57:56.727868Z","draft_created_at":null,"lead_time":1.757,"import_id":null,"last_action":null,"task":112,"project":8,"updated_by":1,"parent_prediction":null,"parent_annotation":null,"last_created_by":null} {"id":236,"result":[{"value":{"start":7.7225444947637305,"end":8.499573148357142,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":7.7225444947637305,"end":8.499573148357142,"channel":0,"text":["Uh there, okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":12.215306981869544,"end":15.153977500086084,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":12.215306981869544,"end":15.153977500086084,"channel":0,"text":["Yeah, the location is amazing."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":15.37728029592657,"end":29.580561571012286,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":15.37728029592657,"end":29.580561571012286,"channel":0,"text":["And actually the view, I mean, here, the street, I think is really unique because this building is a little bit uh shifted from the street. So I think it's really nice that you can actually see the street and the cars can just go in this direction. It's really nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":30.164316836061797,"end":39.9250466040086,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":30.164316836061797,"end":39.9250466040086,"channel":0,"text":["But uh yeah, I mean, everything here is uh... I mean, sorry for the boxes. It's just I moved in quite recently. So, I mean, I I need to take care of that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":41.57935980738651,"end":43.123455208758024,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":41.57935980738651,"end":43.123455208758024,"channel":0,"text":["eh the boxes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":43.921629357504585,"end":50.55178563510498,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":43.921629357504585,"end":50.55178563510498,"channel":0,"text":["Yes, because in these ones I packed really uh careful things like the... the horse... there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":51.93701835332155,"end":52.56793905495722,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":51.93701835332155,"end":52.56793905495722,"channel":0,"text":["the dog there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":52.9796978286563,"end":59.311398382688125,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":52.9796978286563,"end":59.311398382688125,"channel":0,"text":["And, ehm and the big one was mar-, more for general things like the the the plushies and this kind of things."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":59.698324236774255,"end":63.20542556279854,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":59.698324236774255,"end":63.20542556279854,"channel":0,"text":["Yeah, uh I am a really big fan of bears, as you can see."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":63.290173607153925,"end":66.13938769847795,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":63.290173607153925,"end":66.13938769847795,"channel":0,"text":["So the plushies are really, really important for me."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":66.49130067083945,"end":74.71908396505006,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":66.49130067083945,"end":74.71908396505006,"channel":0,"text":["Eh, so this one, I I brought it from China. Because because I did an internship as a nanny bunny as a panda nanny."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":75.30917074704954,"end":79.82758638640018,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":75.30917074704954,"end":79.82758638640018,"channel":0,"text":["So yeah, they gave me this as uh... Yeah, it was really, really nice experience."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":80.8935103086373,"end":81.45602838123656,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":80.8935103086373,"end":81.45602838123656,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":81.7416030146085,"end":104.30229871850221,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":81.7416030146085,"end":104.30229871850221,"channel":0,"text":["And this one, uh, yeah, this one, I, I, I just purchased it, uh, on a natural reserve, uh, back in Romania. Cause the brown bears are really, really a a thing there. And I mean, yeah, they have issues with them in the, in the forests. Uh, so they attack people, but they are trying to protect them and just keep them on uh safe areas."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":105.15883922402405,"end":105.39128369304773,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":105.15883922402405,"end":105.39128369304773,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":109.4888905828132,"end":111.503,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":109.4888905828132,"end":111.503,"channel":0,"text":["Eh yeah, the dog is it's a gift."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":111.52254177810214,"end":132.7322320745744,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":111.52254177810214,"end":132.7322320745744,"channel":0,"text":["I don't really much like it, but it's actual marble so it costs a fortune. So, you know, I don't um [smack] I don't uh I [laughter] I am not uh willing to to give it away or just throw it away because because it's really really costly but uh yeah, I I should sell it or something."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":135.99707071561062,"end":137.8034963034517,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":135.99707071561062,"end":137.8034963034517,"channel":0,"text":["Yes, yes, I do them by hand."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":137.95626285680413,"end":141.78668748771227,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":137.95626285680413,"end":141.78668748771227,"channel":0,"text":["So uh I mean, this is kind of my work, as you can see."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":141.92737585264896,"end":143.89662159695476,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":141.92737585264896,"end":143.89662159695476,"channel":0,"text":["So I have like different colors."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":144.0879223927489,"end":151.9229761258129,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":144.0879223927489,"end":151.9229761258129,"channel":0,"text":["I mean, these ones are pieces that I I find myself really drawn to because those were my my first pieces."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":152.3220718656117,"end":157.6730550282467,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":152.3220718656117,"end":157.6730550282467,"channel":0,"text":["So I I give them as as a reminder of that you always need to remain humble."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":157.9918360143363,"end":168.21597527576745,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":157.9918360143363,"end":168.21597527576745,"channel":0,"text":["Uh, especially the red one because that one as you can see it has a failure on the on the side. So that was one of my really first ones. So, you know, it's always good to keep a reminder there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":169.78092374954983,"end":171.76334300679457,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":169.78092374954983,"end":171.76334300679457,"channel":0,"text":["Yeah, I mean the blue one?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":173.09203322809404,"end":175.80741828132133,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":173.09203322809404,"end":175.80741828132133,"channel":0,"text":["Yeah, the blue one is one of the last collection."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":176.04168661020324,"end":179.93348847956491,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":176.04168661020324,"end":179.93348847956491,"channel":0,"text":["So uh it's eh... you see there is a little bit of a difference in the shape."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":180.35885687879556,"end":184.05304376626424,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":180.35885687879556,"end":184.05304376626424,"channel":0,"text":["And I think uh that one it's uh, it's really nice piece of art."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":184.57438350393159,"end":189.64312999931764,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":184.57438350393159,"end":189.64312999931764,"channel":0,"text":["My my favorite favorite is the brown one, because that one is ah, it's"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":191.216033124463,"end":191.82703001446808,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":191.216033124463,"end":191.82703001446808,"channel":0,"text":["Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":192.4845157982779,"end":202.6012647447871,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":192.4845157982779,"end":202.6012647447871,"channel":0,"text":["Because uh that one is uh really special to me, because eh that one was a special uh set that we did for eh the King of Sweden."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":203.34369929839752,"end":210.70459606123148,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":203.34369929839752,"end":210.70459606123148,"channel":0,"text":["Yeah, so uh he asked me to, to actually prepare one set specifically for him and I actually kept one of them just for me."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":211.053262764767,"end":211.56526010380597,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":211.053262764767,"end":211.56526010380597,"channel":0,"text":["Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":213.39173586227696,"end":217.0836057416999,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":213.39173586227696,"end":217.0836057416999,"channel":0,"text":["That one i- is a a little bit of a new work that I am doing."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":217.40902799833304,"end":220.96486085976173,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":217.40902799833304,"end":220.96486085976173,"channel":0,"text":["So it's um, it's a little bit uh conceptual."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":221.2371529520466,"end":226.89113415704435,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":221.2371529520466,"end":226.89113415704435,"channel":0,"text":["So it's how the the art deflates or how people lose interest in that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":227.2974733437224,"end":227.74907974068267,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":227.2974733437224,"end":227.74907974068267,"channel":0,"text":["So."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":228.40988615976426,"end":228.8150036629198,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":228.40988615976426,"end":228.8150036629198,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":230.20589135530483,"end":230.33539613090375,"channel":0,"labels":["Noise"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":230.20589135530483,"end":230.33539613090375,"channel":0,"text":["click"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":230.50474852976384,"end":244.40623611515738,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":230.50474852976384,"end":244.40623611515738,"channel":0,"text":["So uh I I think I went from bigger pieces to smaller pieces and in that sense uh I wanted to make a construction and maybe uh I could actually do a show with this and actually do the whole uh sequence."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":246.34088775948013,"end":253.1706836042768,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":246.34088775948013,"end":253.1706836042768,"channel":0,"text":["Yeah, yeah, paintings is not uh actual my thing, but um, but yeah, I I really enjoy them."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":253.43543982694015,"end":260.13211783812386,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":253.43543982694015,"end":260.13211783812386,"channel":0,"text":["And also picture. So this one is a picture from a friend of mine. He does photography, and I think he's really, really talented."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":260.4874258122029,"end":263.218519442711,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":260.4874258122029,"end":263.218519442711,"channel":0,"text":["And eh this one, eh it's a classic."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":263.47420835863704,"end":267.98760586185705,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":263.47420835863704,"end":267.98760586185705,"channel":0,"text":["So this one ehm, [smack] it's a gift from one eh friend."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":268.58070352553494,"end":273.80117828534486,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":268.58070352553494,"end":273.80117828534486,"channel":0,"text":["And this one, eh I actually purchased it to my friend because I really think it's really nice picture."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":274.7406429753637,"end":283.45114006750276,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":274.7406429753637,"end":283.45114006750276,"channel":0,"text":["Uh and I actually put it there so ah ah the lamp can actually give some light to that one because it's a little bit dark."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":283.83965439429943,"end":289.7035468259031,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":283.83965439429943,"end":289.7035468259031,"channel":0,"text":["So I think uh it it can be better appreciated, when it's ah with the lamp there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":292.97473431474066,"end":296.77518153090637,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":292.97473431474066,"end":296.77518153090637,"channel":0,"text":["Ehm yes. Uh yeah, you're right. I mean, I think you are a little bit tall."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":296.77518153090637,"end":297.00098472938646,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":296.77518153090637,"end":297.00098472938646,"channel":0,"text":["Wuh."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":297.00098472938646,"end":299.2623373494596,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":297.00098472938646,"end":299.2623373494596,"channel":0,"text":["For my height, it's uh it's okay, you know?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":300.12754371082843,"end":302.55160745921813,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":300.12754371082843,"end":302.55160745921813,"channel":0,"text":["Yeah, you you are you're a little bit tall."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":307.35442804097227,"end":310.3230759739317,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":307.35442804097227,"end":310.3230759739317,"channel":0,"text":["Yeah, I mean, for me, as you can see, everything is to my reach."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":310.9678070265442,"end":315.15917727484924,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":310.9678070265442,"end":315.15917727484924,"channel":0,"text":["So yeah, maybe I am um a little bit of a dwarf [laughter] compared to you."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":317.37507929004613,"end":328.87384934764935,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":317.37507929004613,"end":328.87384934764935,"channel":0,"text":["Yeah yeah you you're a little bit big. Yes. Yes. As you might say... and as you can... as you can see I am also I am also really fan of plants. So I really like them. This is like my little baby, here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":329.7272526124934,"end":330.8610116491338,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":329.7272526124934,"end":330.8610116491338,"channel":0,"text":["This this plant?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":331.2462053406587,"end":340.5082376415054,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":331.2462053406587,"end":340.5082376415054,"channel":0,"text":["I really love them. I talk to them every day while I water them so... yeah they are my friends as well so I I really really love them, and give them love. All."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":341.7271288425403,"end":342.76980831787506,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":341.7271288425403,"end":342.76980831787506,"channel":0,"text":["Yes, of course."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":343.056,"end":344.1038090980474,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":343.056,"end":344.1038090980474,"channel":0,"text":["This is Margaret."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":345.534727808288,"end":346.6604231654169,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":345.534727808288,"end":346.6604231654169,"channel":0,"text":["And this is Mary."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":347.2760714023647,"end":356.7903629557172,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":347.2760714023647,"end":356.7903629557172,"channel":0,"text":["So uh yeah, I ah I I really love them. I... We have a s- strong relationship. And as you can see, they are super healthy because they really like me talking to them."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":357.23092945319036,"end":357.762231096673,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":357.23092945319036,"end":357.762231096673,"channel":0,"text":["Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":359.1104090170103,"end":362.0430577718702,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":359.1104090170103,"end":362.0430577718702,"channel":0,"text":["And here I have my... my desk, my working area."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":362.5719680408617,"end":369.1545227692834,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":362.5719680408617,"end":369.1545227692834,"channel":0,"text":["Eh, of course, for the finances, because you know when you have when you are an entrepreneur, you have to deal with your own finances."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":369.5629609077107,"end":372.5997537086668,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":369.5629609077107,"end":372.5997537086668,"channel":0,"text":["But my study is uh you know far far off the street."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":373.13530524820163,"end":373.600194186249,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":373.13530524820163,"end":373.600194186249,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":375.9854486003062,"end":378.83044745728057,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":375.9854486003062,"end":378.83044745728057,"channel":0,"text":["Yeah, a hundred percent because I don't want to mix work."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":378.86033317472646,"end":381.5615410877889,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":378.86033317472646,"end":381.5615410877889,"channel":0,"text":["I only keep like, you know, finished pieces."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":381.88364270915025,"end":384.58917488471053,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":381.88364270915025,"end":384.58917488471053,"channel":0,"text":["But because otherwise, it's a little bit of a disaster."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":384.87142888281073,"end":391.0572222103304,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":384.87142888281073,"end":391.0572222103304,"channel":0,"text":["Whenever you have the work at home, because everything gets messed up and uh dirty and uh you cannot stop."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":391.74612514870216,"end":394.64958205974887,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":391.74612514870216,"end":394.64958205974887,"channel":0,"text":["So I think it's uh, it's for the best."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":397.675535686663,"end":399.76753590787604,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":397.675535686663,"end":399.76753590787604,"channel":0,"text":["Yeah, one if... is for the studio."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":400.1160192168176,"end":401.2018669506853,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":400.1160192168176,"end":401.2018669506853,"channel":0,"text":["Another one is here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":401.4376320549807,"end":405.3262396480704,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":401.4376320549807,"end":405.3262396480704,"channel":0,"text":["And the card is uh for the um trash room."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":405.53182661217784,"end":409.07747951149514,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":405.53182661217784,"end":409.07747951149514,"channel":0,"text":["So uh it has um, yeah, it has a security."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":409.4238465378363,"end":410.18759265034265,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":409.4238465378363,"end":410.18759265034265,"channel":0,"text":["Because there..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":411.5539051841548,"end":411.9590226873104,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":411.5539051841548,"end":411.9590226873104,"channel":0,"text":["Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":413.72550895459335,"end":419.0664385141163,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":413.72550895459335,"end":419.0664385141163,"channel":0,"text":["Yes, it's a security thing because because they have uh people coming in to look for the paint."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":419.79046336236075,"end":420.9759301543815,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":419.79046336236075,"end":420.9759301543815,"channel":0,"text":["So it's it's good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":421.64319444941265,"end":421.9387309885999,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":421.64319444941265,"end":421.9387309885999,"channel":0,"text":["Mhm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":425.3144466435726,"end":430.34504301655676,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":425.3144466435726,"end":430.34504301655676,"channel":0,"text":["Ah no, no, no, no, no, no, no, no, no of course not. I wouldn't keep a credit card there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":430.7795530889707,"end":432.08919676686645,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":430.7795530889707,"end":432.08919676686645,"channel":0,"text":["It's just otherwise I lose them."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":432.26851107154187,"end":436.48474890116205,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":432.26851107154187,"end":436.48474890116205,"channel":0,"text":["But I was uh thinking of putting a little, little base or something."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":436.80062803372164,"end":440.01078774244235,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":436.80062803372164,"end":440.01078774244235,"channel":0,"text":["They are just to put all these things because otherwise it looks a little bit messy."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":441.5072245590404,"end":442.0352055672513,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":441.5072245590404,"end":442.0352055672513,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":444.55005645420454,"end":444.99170094534946,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":444.55005645420454,"end":444.99170094534946,"channel":0,"text":["Mm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":447.79435177642307,"end":448.7905423579531,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":447.79435177642307,"end":448.7905423579531,"channel":0,"text":["Yes, yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":449.4911964002959,"end":457.4330209410953,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":449.4911964002959,"end":457.4330209410953,"channel":0,"text":["Yes, but that one, I mean, yeah, I could put it there. But I wanted to get something different. I don't want to use my piece in that that sense. I think it's more of an art."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":457.69203049229316,"end":460.22560083820554,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":457.69203049229316,"end":460.22560083820554,"channel":0,"text":["So I wanted something more functional to put there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":463.50784555738153,"end":464.55384566798807,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":463.50784555738153,"end":464.55384566798807,"channel":0,"text":["Yeah, me neither."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":464.55384566798807,"end":465.0856577905094,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":464.55384566798807,"end":465.0856577905094,"channel":0,"text":["exhale"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":465.0856577905094,"end":467.8922141023393,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":465.0856577905094,"end":467.8922141023393,"channel":0,"text":["But, you know, it's a temporary solution."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":468.455,"end":474.6162600974785,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":468.455,"end":474.6162600974785,"channel":0,"text":["Because uh because, yeah, the the the bin, it's uh... [breath] [smack] It's hard to find nice bins."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":474.7923801258817,"end":477.30610102660916,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":474.7923801258817,"end":477.30610102660916,"channel":0,"text":["You know, it's a it's a it's a it's a real problem."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":479.1641773342364,"end":489.0708143286958,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":479.1641773342364,"end":489.0708143286958,"channel":0,"text":["Yeah, it's especially ugly, really. I want to hide it somewhere, but... thing is that I don't have any cupboard here and the the TV uh furniture is just transparent, of course."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":489.6850574875273,"end":490.472048046936,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":489.6850574875273,"end":490.472048046936,"channel":0,"text":["exhale"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":490.8672036442762,"end":513.0469382218475,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":490.8672036442762,"end":513.0469382218475,"channel":0,"text":["Yeah, I need to remove this as well, but... No, but I need to purchase a new bin. Definitely, hundred percent something uh... You know... metal one or something like this. Aluminum. Something like this would work because I mean the style here is a little bit modern... or maybe black. But metallic one because that one looks really really ugly and plastic and you know, I don't like that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":518.67822539981,"end":519.163038149488,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":518.67822539981,"end":519.163038149488,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":519.8271652038413,"end":520.525,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":519.8271652038413,"end":520.525,"channel":0,"text":["Thank you for coming"]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":"Jim jaoregan@tcd.ie, 1","created_ago":"0 minutes","completed_by":1,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-22T15:57:18.788969Z","updated_at":"2024-09-22T15:57:56.851322Z","draft_created_at":null,"lead_time":1.822,"import_id":null,"last_action":null,"task":113,"project":8,"updated_by":1,"parent_prediction":null,"parent_annotation":null,"last_created_by":null} {"id":237,"result":[{"value":{"start":8.849075943436373,"end":18.624397757882598,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":8.849075943436373,"end":18.624397757882598,"channel":0,"text":["Yeah, I mean, you have uh had a short stay here, but uh w- why would you like to leave? I mean, I I don't understand it. Everything is... so nice in this apartment."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":19.016960082465577,"end":19.415436315077585,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":19.016960082465577,"end":19.415436315077585,"channel":0,"text":["I mean..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":19.979944311277926,"end":20.682823103455167,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":19.979944311277926,"end":20.682823103455167,"channel":0,"text":["It's uh..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":21.097902512426007,"end":21.84172481330175,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":21.097902512426007,"end":21.84172481330175,"channel":0,"text":["[B_EH1_P_R_W_AH0]"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":21.84172481330175,"end":22.343140739338523,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":21.84172481330175,"end":22.343140739338523,"channel":0,"text":["It's ok."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":25.577488962479084,"end":27.02860657624114,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":25.577488962479084,"end":27.02860657624114,"channel":0,"text":["Uh-huh, OK, I see."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":27.75151780025961,"end":30.690280015773148,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":27.75151780025961,"end":30.690280015773148,"channel":0,"text":["Well, yeah, but let's check. Uh. Did you do the cleaning?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":32.217713089015,"end":34.15364345245499,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":32.217713089015,"end":34.15364345245499,"channel":0,"text":["Mm. Ah, I doesn't seem like it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":34.46910380327283,"end":34.960557823494305,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":34.46910380327283,"end":34.960557823494305,"channel":0,"text":["You know."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":42.242885552609046,"end":42.568307809242185,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":42.242885552609046,"end":42.568307809242185,"channel":0,"text":["Did you...?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":43.57246927665422,"end":46.19577114134992,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":43.57246927665422,"end":46.19577114134992,"channel":0,"text":["Did you break... the panda?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":47.95493781058085,"end":51.51890757064238,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":47.95493781058085,"end":51.51890757064238,"channel":0,"text":["Yeah, look! It looks like the the arm is stitched."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":53.47740448691001,"end":57.12418937782439,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":53.47740448691001,"end":57.12418937782439,"channel":0,"text":["No, it was... it's an original panda from Hong Kong."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":57.84326984447782,"end":59.23793665861984,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":57.84326984447782,"end":59.23793665861984,"channel":0,"text":["How you actually dare?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":60.33265041286554,"end":61.93784686446737,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":60.33265041286554,"end":61.93784686446737,"channel":0,"text":["You actually broke it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":64.15805522490065,"end":66.3738470646249,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":64.15805522490065,"end":66.3738470646249,"channel":0,"text":["Oh, come on, it's funny for you, this?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":67.02531032019506,"end":68.41001522852179,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":67.02531032019506,"end":68.41001522852179,"channel":0,"text":["It's not funny for me."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":69.64340914989634,"end":70.89196801208062,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":69.64340914989634,"end":70.89196801208062,"channel":0,"text":["It's really not funny."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":74.86379014722543,"end":76.84620940447014,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":74.86379014722543,"end":76.84620940447014,"channel":0,"text":["Really, I cannot believe this."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":77.80972024485571,"end":78.2480441007289,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":77.80972024485571,"end":78.2480441007289,"channel":0,"text":["exhale"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":78.58342826317735,"end":81.4901129903704,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":78.58342826317735,"end":81.4901129903704,"channel":0,"text":["We will check, definitely we will check on the pictures."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":82.44758481303637,"end":84.81158424486225,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":82.44758481303637,"end":84.81158424486225,"channel":0,"text":["This is unacceptable, unacceptable."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":89.783,"end":91.08582761846924,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":89.783,"end":91.08582761846924,"channel":0,"text":["What did you do to the painting?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":99.82715171649735,"end":100.6307454522649,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":99.82715171649735,"end":100.6307454522649,"channel":0,"text":["No, it's..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":102.57995835679196,"end":103.87622710790883,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":102.57995835679196,"end":103.87622710790883,"channel":0,"text":["You cleaned the painting."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":104.15516047073724,"end":106.41643744955961,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":104.15516047073724,"end":106.41643744955961,"channel":0,"text":["You cleaned the painting and you did it wrong."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":111.38194902420784,"end":112.6935999565557,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":111.38194902420784,"end":112.6935999565557,"channel":0,"text":["No, it's not."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":113.17841270623363,"end":114.44610886576316,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":113.17841270623363,"end":114.44610886576316,"channel":0,"text":["Of course it's not."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":115.91092701197486,"end":117.15616523888738,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":115.91092701197486,"end":117.15616523888738,"channel":0,"text":["Oh my god."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":120.058542065582,"end":122.01771687592435,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":120.058542065582,"end":122.01771687592435,"channel":0,"text":["This is... dusty."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":122.47970317006249,"end":125.66813177326244,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":122.47970317006249,"end":125.66813177326244,"channel":0,"text":["What w-? which kind? which kind? of cleaning?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":125.85069107195886,"end":126.53806257321456,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":125.85069107195886,"end":126.53806257321456,"channel":0,"text":["Did he do?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":126.702,"end":127.10921183995843,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":126.702,"end":127.10921183995843,"channel":0,"text":["Because?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":130.10586309064112,"end":133.58238395871945,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":130.10586309064112,"end":133.58238395871945,"channel":0,"text":["Well, they they robbed you because this is just so badly done."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":139.7993900184211,"end":143.12828905774182,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":139.7993900184211,"end":143.12828905774182,"channel":0,"text":["Yeah, hundred percent, because this is not acceptable, really."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":145.0027828269886,"end":146.74611634466615,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":145.0027828269886,"end":146.74611634466615,"channel":0,"text":["It's it's it's... The TV is working?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":148.08495110149198,"end":148.60961147443112,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":148.08495110149198,"end":148.60961147443112,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":152.63386939036957,"end":156.4061275485765,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":152.63386939036957,"end":156.4061275485765,"channel":0,"text":["Did you... break the glass? Of the... TV?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":158.58278263807406,"end":160.6349352360259,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":158.58278263807406,"end":160.6349352360259,"channel":0,"text":["Yeah, I can see I can see a line there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":163.16540091228265,"end":167.97068601116095,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":163.16540091228265,"end":167.97068601116095,"channel":0,"text":["Your hair? You said that you hired people to clean and you say that that mark is your hair."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":172.44051130634006,"end":175.74415838934527,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":172.44051130634006,"end":175.74415838934527,"channel":0,"text":["I understand, I don't see how th-... your hair will reach that point."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":179.05860336089083,"end":180.16437490638916,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":179.05860336089083,"end":180.16437490638916,"channel":0,"text":["Of course not."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":180.84754712735705,"end":186.3347669625955,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":180.84754712735705,"end":186.3347669625955,"channel":0,"text":["I I don't understand how you, I I mean, this is so... unrespectful from you, really."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":186.51833001599843,"end":187.9163174654122,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":186.51833001599843,"end":187.9163174654122,"channel":0,"text":["I cannot really understand."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":188.14876193443587,"end":190.93771055031704,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":188.14876193443587,"end":190.93771055031704,"channel":0,"text":["I think I might not be able to give you your deposit back."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":192.34125987431685,"end":193.7326060531871,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":192.34125987431685,"end":193.7326060531871,"channel":0,"text":["Huh, that's fine."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":198.14145540782624,"end":199.5925730215883,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":198.14145540782624,"end":199.5925730215883,"channel":0,"text":["Okay, oh my God."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":200.50194994291888,"end":201.70069927602665,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":200.50194994291888,"end":201.70069927602665,"channel":0,"text":["I cannot believe this."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":203.17297818602674,"end":204.48130848310285,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":203.17297818602674,"end":204.48130848310285,"channel":0,"text":["This is... incredible."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":204.66394342305,"end":206.63922777713773,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":204.66394342305,"end":206.63922777713773,"channel":0,"text":["And... there is one base missing there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":212.45241297006226,"end":217.71948361213686,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":212.45241297006226,"end":217.71948361213686,"channel":0,"text":["Okay, okay, that's that's good. But please put it back because uh it needs to be there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":218.29477300739768,"end":220.21410019447882,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":218.29477300739768,"end":220.21410019447882,"channel":0,"text":["It's, it's a green one, right?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":220.96107535864468,"end":221.34958968544137,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":220.96107535864468,"end":221.34958968544137,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":221.84436434093462,"end":225.4199020143418,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":221.84436434093462,"end":225.4199020143418,"channel":0,"text":["But then eh after, can you show me that it's actually in good state?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":225.836,"end":232.77738335957883,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":225.836,"end":232.77738335957883,"channel":0,"text":["Because... because now I am not really sure. I mean, after the panda, I cannot believe y- you just sewed the arm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":233.50865048188183,"end":234.0797997486257,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":233.50865048188183,"end":234.0797997486257,"channel":0,"text":["exhale"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":234.20598388895283,"end":235.47114592749594,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":234.20598388895283,"end":235.47114592749594,"channel":0,"text":["I cannot get over this."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":236.1142697742612,"end":236.373279325459,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":236.1142697742612,"end":236.373279325459,"channel":0,"text":["And..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":237.0307651092688,"end":239.97870271631217,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":237.0307651092688,"end":239.97870271631217,"channel":0,"text":["Were you drinking coffee or eating here? I mean, this has..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":241.71028405918227,"end":241.88295709331413,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":241.71028405918227,"end":241.88295709331413,"channel":0,"text":["I-"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":242.4175793720686,"end":244.22754283560255,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":242.4175793720686,"end":244.22754283560255,"channel":0,"text":["It's it's full of stains."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":246.42886411807152,"end":248.514223068741,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":246.42886411807152,"end":248.514223068741,"channel":0,"text":["The the the purple pillows."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":251.148322821977,"end":252.1046657802458,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":251.148322821977,"end":252.1046657802458,"channel":0,"text":["Uh-huh, okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":252.66917377644614,"end":254.8337508305045,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":252.66917377644614,"end":254.8337508305045,"channel":0,"text":["I really hope it is water only, please."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":256.3205167872398,"end":257.54251056724996,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":256.3205167872398,"end":257.54251056724996,"channel":0,"text":["This is a different remote."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":262.7425827405455,"end":264.2003416248511,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":262.7425827405455,"end":264.2003416248511,"channel":0,"text":["Yeah, but y- you didn't report it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":266.10842675921816,"end":268.62336865507325,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":266.10842675921816,"end":268.62336865507325,"channel":0,"text":["Yeah, but but you didn't report that it was broken."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":273.12307966769794,"end":275.8061529672854,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":273.12307966769794,"end":275.8061529672854,"channel":0,"text":["I will check my emails. Yes, yes, hundred percent."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":279.03929668477775,"end":282.682853071151,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":279.03929668477775,"end":282.682853071151,"channel":0,"text":["The carpet was a little bit... closer to the couch."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":286.2150547140437,"end":287.1614357664972,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":286.2150547140437,"end":287.1614357664972,"channel":0,"text":["The the..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":287.6329659750881,"end":288.3801089112356,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":287.6329659750881,"end":288.3801089112356,"channel":0,"text":["The carpet."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":291.69776589784215,"end":292.65078822083916,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":291.69776589784215,"end":292.65078822083916,"channel":0,"text":["What are you looking for?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":296.9585046405254,"end":298.4659809231767,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":296.9585046405254,"end":298.4659809231767,"channel":0,"text":["I am trying to make uh..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":299.2662540236725,"end":301.57230526855824,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":299.2662540236725,"end":301.57230526855824,"channel":0,"text":["an inspection here... and you're just playing."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":301.99464469037645,"end":302.75839080288284,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":301.99464469037645,"end":302.75839080288284,"channel":0,"text":["What is this?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":303.43038012290737,"end":304.36015799900207,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":303.43038012290737,"end":304.36015799900207,"channel":0,"text":["What is this?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":308.8090557278436,"end":310.37307494084575,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":308.8090557278436,"end":310.37307494084575,"channel":0,"text":["No, but you moved the carpet."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":311.69793277302983,"end":312.9298884588553,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":311.69793277302983,"end":312.9298884588553,"channel":0,"text":["Yeah, there is a mark now."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":317.03163336096094,"end":317.244154018354,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":317.03163336096094,"end":317.244154018354,"channel":0,"text":["Ee-"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":317.3304905354199,"end":319.62172887293895,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":317.3304905354199,"end":319.62172887293895,"channel":0,"text":["Everything is not water in this life, you know?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":321.59370908123486,"end":322.75261079108145,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":321.59370908123486,"end":322.75261079108145,"channel":0,"text":["I cannot believe this."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":323.1917541401997,"end":324.43277659734446,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":323.1917541401997,"end":324.43277659734446,"channel":0,"text":["I will come tomorrow morning"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":325.05041475789307,"end":330.67239187216416,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":325.05041475789307,"end":330.67239187216416,"channel":0,"text":["and I will actually check on the apartment and I hope everything is... really how it should be."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":335.1273286187254,"end":335.55236993351156,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":335.1273286187254,"end":335.55236993351156,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":336.9407213377417,"end":337.71774999133515,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":336.9407213377417,"end":337.71774999133515,"channel":0,"text":["See you tomorrow."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":340.9237683802001,"end":341.605,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":340.9237683802001,"end":341.605,"channel":0,"text":["What happened?"]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":"Jim jaoregan@tcd.ie, 1","created_ago":"0 minutes","completed_by":1,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-22T15:57:24.505304Z","updated_at":"2024-09-22T15:57:56.964423Z","draft_created_at":null,"lead_time":2.633,"import_id":null,"last_action":null,"task":114,"project":8,"updated_by":1,"parent_prediction":null,"parent_annotation":null,"last_created_by":null} {"id":238,"result":[{"value":{"start":16.703557628345838,"end":19.584572932005063,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":16.703557628345838,"end":19.584572932005063,"channel":0,"text":["Oh, yes, you know, it was really expensive property."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":19.846,"end":25.02181795017394,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":19.846,"end":25.02181795017394,"channel":0,"text":["But as you can see, I have a a green, uh you know, forest view. So I really appreciated that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":25.02181795017394,"end":25.267544960284678,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":25.02181795017394,"end":25.267544960284678,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":25.267544960284678,"end":35.58747166472427,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":25.267544960284678,"end":35.58747166472427,"channel":0,"text":["That is really important for me when I was... just talking to the person who just offered me this apartment, I was really, that was one of my real uh priorities."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":37.660494454775474,"end":38.07032044875672,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":37.660494454775474,"end":38.07032044875672,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":38.07032044875672,"end":41.5785516039881,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":38.07032044875672,"end":41.5785516039881,"channel":0,"text":["Yeah, it's really nice. I think it gives the touch to the room, really."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":41.5785516039881,"end":41.68481193268464,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":41.5785516039881,"end":41.68481193268464,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":41.68481193268464,"end":42.16630404709081,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":41.68481193268464,"end":42.16630404709081,"channel":0,"text":["Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":42.16630404709081,"end":42.865879946864865,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":42.16630404709081,"end":42.865879946864865,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":42.865879946864865,"end":47.96027937791891,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":42.865879946864865,"end":47.96027937791891,"channel":0,"text":["And as you can see, I have a lot of paintings. I mean, [lip_trill] this, of course, is a Van Gogh original."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":48.544017257972875,"end":56.94810365572928,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":48.544017257972875,"end":56.94810365572928,"channel":0,"text":["Hundred percent. It was super... costly, but I wanted to actually show off this one because I think it's it's it's marvelous."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":57.66729365414871,"end":60.93361163416565,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":57.66729365414871,"end":60.93361163416565,"channel":0,"text":["And the rest, I am not really aware."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":61.1041856434535,"end":81.47464889750185,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":61.1041856434535,"end":81.47464889750185,"channel":0,"text":["who the painters are? But... I mean this one... this one was like five thousand... dollars if I recall well... or more I'm not sure. And this one eh was a gift but also you know I have a really really rich friend so they ga- they gift me this for my thirtieth birthday."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":82.44348872576114,"end":83.85807935153376,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":82.44348872576114,"end":83.85807935153376,"channel":0,"text":["Yeah, it's it's really nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":83.85807935153376,"end":84.07041652228756,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":83.85807935153376,"end":84.07041652228756,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":84.07041652228756,"end":88.818,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":84.07041652228756,"end":88.818,"channel":0,"text":["And eh if you can see the the figure there, it's ah green marble."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":89.41727597731561,"end":93.22950873716302,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":89.41727597731561,"end":93.22950873716302,"channel":0,"text":["And it's so, so expensive that you cannot imagine."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":93.22950873716302,"end":93.34905160694662,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":93.22950873716302,"end":93.34905160694662,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":93.34905160694662,"end":96.74195518359562,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":93.34905160694662,"end":96.74195518359562,"channel":0,"text":["I mean, it's it's maybe worth the whole apartment here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":97.40339827016078,"end":99.22974766963246,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":97.40339827016078,"end":99.22974766963246,"channel":0,"text":["It's really, really the best."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":101.87129301893276,"end":106.22931433226442,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":101.87129301893276,"end":106.22931433226442,"channel":0,"text":["Yeah, of course. So I I think ah that that really, really matches."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":108.03818314096104,"end":108.74215781857558,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":108.03818314096104,"end":108.74215781857558,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":108.74215781857558,"end":111.32845673717051,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":108.74215781857558,"end":111.32845673717051,"channel":0,"text":["Ah I mean, in winter, maybe sometimes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":111.32845673717051,"end":111.62067264108599,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":111.32845673717051,"end":111.62067264108599,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":111.62067264108599,"end":115.1537540684393,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":111.62067264108599,"end":115.1537540684393,"channel":0,"text":["It was a nice add-on, but it's not my piece of cake, really."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":117.39018191458412,"end":117.75877242975022,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":117.39018191458412,"end":117.75877242975022,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":117.75877242975022,"end":126.6096477488085,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":117.75877242975022,"end":126.6096477488085,"channel":0,"text":["And the couches, ah as you can see, it's really giving this ah luxurious look, because, I mean, they are in this ah velvet."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":126.83607037325923,"end":133.90444123764271,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":126.83607037325923,"end":133.90444123764271,"channel":0,"text":["Ah I especially asked them to be like this, because I really like the soft touch, uh and and I really enjoy it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":133.90444123764271,"end":134.13750513263687,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":133.90444123764271,"end":134.13750513263687,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":134.13750513263687,"end":138.14372259380062,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":134.13750513263687,"end":138.14372259380062,"channel":0,"text":["But ah yeah, I mean, uh also that sculpture there that you can see."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":138.7547194838057,"end":141.2978501438676,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":138.7547194838057,"end":141.2978501438676,"channel":0,"text":["Yeah, it's uh a really unique... piece."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":141.58988256114407,"end":148.56518389459865,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":141.58988256114407,"end":148.56518389459865,"channel":0,"text":["Eh I just sent it to be done for me, especially... because I really like eh this kind of sculptures."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":148.56518389459865,"end":148.83114442932526,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":148.56518389459865,"end":148.83114442932526,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":148.83114442932526,"end":161.45993352991894,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":148.83114442932526,"end":161.45993352991894,"channel":0,"text":["And ah it's ahm... it actually means the empowerment of uh of young ladies as me, you know, like rich and uh and independent women."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":162.8763651920899,"end":164.6529050624851,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":162.8763651920899,"end":164.6529050624851,"channel":0,"text":["Yeah, of course."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":164.6529050624851,"end":165.06466383618417,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":164.6529050624851,"end":165.06466383618417,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":165.06466383618417,"end":169.38163315734022,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":165.06466383618417,"end":169.38163315734022,"channel":0,"text":["And uh yeah, I mean, I just keep eh books like, and things to read."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":169.38163315734022,"end":169.82833033532256,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":169.38163315734022,"end":169.82833033532256,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":169.82833033532256,"end":174.16449505730586,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":169.82833033532256,"end":174.16449505730586,"channel":0,"text":["Uh not because I read much, but just because I like to pretend that I read."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":177.2418637813307,"end":181.80685986559388,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":177.2418637813307,"end":181.80685986559388,"channel":0,"text":["No, I mean, [breath] Sherlock Holmes is not even a genre that I like."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":182.27972066944542,"end":185.84469509576914,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":182.27972066944542,"end":185.84469509576914,"channel":0,"text":["No, I don't read, but you know, it's good to pretend that you read."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":188.27835377669575,"end":190.70241752508545,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":188.27835377669575,"end":190.70241752508545,"channel":0,"text":["Uh no, that's also something I like to pretend."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":191.24712793600136,"end":195.4695881461349,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":191.24712793600136,"end":195.4695881461349,"channel":0,"text":["But ah yeah, my ex-boyfriend used to play, so I think he left it and you know."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":195.73485475308456,"end":199.64397087875724,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":195.73485475308456,"end":199.64397087875724,"channel":0,"text":["I mean, in between you and me, we know each other, so I can be totally honest with you."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":199.64397087875724,"end":199.9518953031023,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":199.64397087875724,"end":199.9518953031023,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":199.9518953031023,"end":208.58641888835868,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":199.9518953031023,"end":208.58641888835868,"channel":0,"text":["But sometimes, you know, there are some people coming over, and then I like to, you know, I like them to think that that I am into this kind of stuff."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":210.2409326493346,"end":213.03681580484263,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":210.2409326493346,"end":213.03681580484263,"channel":0,"text":["It's a little bit, [breath] you know, here and there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":213.03681580484263,"end":213.49518969869254,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":213.03681580484263,"end":213.49518969869254,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":213.49518969869254,"end":215.89932963545166,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":213.49518969869254,"end":215.89932963545166,"channel":0,"text":["And this lamp is really, really nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":216.44343786191004,"end":217.5857363953978,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":216.44343786191004,"end":217.5857363953978,"channel":0,"text":["This I got it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":217.91115865203093,"end":222.49306762563828,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":217.91115865203093,"end":222.49306762563828,"channel":0,"text":["It was a sale, but it's so expensive that it was even not a sa- sale price."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":222.49306762563828,"end":222.68659361035662,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":222.49306762563828,"end":222.68659361035662,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":222.68659361035662,"end":225.67930614434144,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":222.68659361035662,"end":225.67930614434144,"channel":0,"text":["Think it was ten thousand dollars, but it's really exclusive."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":225.67930614434144,"end":225.81545219048388,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":225.67930614434144,"end":225.81545219048388,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":225.81545219048388,"end":230.5461875668635,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":225.81545219048388,"end":230.5461875668635,"channel":0,"text":["It was even more expensive than the painting. I think I might change this one because it's not expensive enough."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":231.08042563082628,"end":231.49882567506887,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":231.08042563082628,"end":231.49882567506887,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":232.39652706555398,"end":233.1005017431685,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":232.39652706555398,"end":233.1005017431685,"channel":0,"text":["What do you think?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":236.16909568877958,"end":238.19046791335617,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":236.16909568877958,"end":238.19046791335617,"channel":0,"text":["Yeah but maybe it's not expensive enough."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":238.81142670917654,"end":239.39917915227926,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":238.81142670917654,"end":239.39917915227926,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":240.61788678004416,"end":242.09224884070858,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":240.61788678004416,"end":242.09224884070858,"channel":0,"text":["Yeah, I think..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":244.96614691571293,"end":264.7742336429802,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":244.96614691571293,"end":264.7742336429802,"channel":0,"text":["Yeah yeah because I think everything is so costly then, then maybe it doesn't look that... you know it d- doesn't match. And this is a original Persian uh carpet. I went to Iran especially to pick it because I really... I I wanted to have an original one and you know you have uh resellers here but"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":264.9668477302558,"end":265.0797493294959,"channel":0,"labels":["Noise"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":264.9668477302558,"end":265.0797493294959,"channel":0,"text":["smack"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":265.37860650395487,"end":270.39632161077355,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":265.37860650395487,"end":270.39632161077355,"channel":0,"text":["Eh you can never be sure that it's actually one, that it's original."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":270.6348224073966,"end":274.08780713192294,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":270.6348224073966,"end":274.08780713192294,"channel":0,"text":["So I just wanted to make sure that it's actual original one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":274.29580278512964,"end":278.4113087387898,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":274.29580278512964,"end":278.4113087387898,"channel":0,"text":["So then I went to pick it up and actually to match the colors and and and to..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":278.6588595437858,"end":284.2721727331649,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":278.6588595437858,"end":284.2721727331649,"channel":0,"text":["And as you can see, there are some hints of green, there, and in the in the figures."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":284.56008160255976,"end":290.46039176389144,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":284.56008160255976,"end":290.46039176389144,"channel":0,"text":["And then that's why I order... for the room to be pain- painted green, because uh I wanted to make a contrast."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":291.11267585725096,"end":291.6406568654619,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":291.11267585725096,"end":291.6406568654619,"channel":0,"text":["Mhm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":295.13299601362496,"end":317.21621314013015,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":295.13299601362496,"end":317.21621314013015,"channel":0,"text":["Uh yeah, I mean that one the service left it because they were just unpacking. And you know, um I don't do this for myself. So you came a little bit early, but uh yeah, they were just unpacking things and they were asking me ah yeah, where do we put this in there? You know, it's so exhausting even though they do it for me I [breath] I need to be just [breath] saying like yeah, put it here put it there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":317.21621314013015,"end":317.5416353967633,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":317.21621314013015,"end":317.5416353967633,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":317.5416353967633,"end":318.90643373497255,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":317.5416353967633,"end":318.90643373497255,"channel":0,"text":["It's so exhausting. Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":323.3451539355892,"end":334.61226460509323,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":323.3451539355892,"end":334.61226460509323,"channel":0,"text":["I mean, eh those bins... are specifically designed... for... um... cans and bottles, because I I was planning to have uh guests here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":336.20731664416274,"end":336.59583097095947,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":336.20731664416274,"end":336.59583097095947,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":336.59583097095947,"end":341.4051489682664,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":336.59583097095947,"end":341.4051489682664,"channel":0,"text":["The one for cans is [the] blue one, and the one for bottles is the red one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":341.4051489682664,"end":341.74487464826205,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":341.4051489682664,"end":341.74487464826205,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":341.74487464826205,"end":345.47940220159853,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":341.74487464826205,"end":345.47940220159853,"channel":0,"text":["I wanted to to make a little bit... eh of a difference."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":345.47940220159853,"end":345.80544388420225,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":345.47940220159853,"end":345.80544388420225,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":345.80544388420225,"end":347.7812218709035,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":345.80544388420225,"end":347.7812218709035,"channel":0,"text":["But um... But of course, I mean,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":348.19511415247297,"end":348.2748093989954,"channel":0,"labels":["Noise"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":348.19511415247297,"end":348.2748093989954,"channel":0,"text":["smack"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":348.7131332548686,"end":349.04519678204525,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":348.7131332548686,"end":349.04519678204525,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":349.7993996865544,"end":356.59538671533386,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":349.7993996865544,"end":356.59538671533386,"channel":0,"text":["Ah let's see how it works when I have eh more guests, you know, because I would like to organize parties, of course."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":356.59538671533386,"end":356.89756452506464,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":356.59538671533386,"end":356.89756452506464,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":356.89756452506464,"end":359.0803517657238,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":356.89756452506464,"end":359.0803517657238,"channel":0,"text":["Ah... [breath] Maybe this is..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":360.10805113143243,"end":365.7603172881437,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":360.10805113143243,"end":365.7603172881437,"channel":0,"text":["Yeah, I mean, it's not that spacious this room. Maybe this is not the accurate room to have those here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":365.7603172881437,"end":366.2057928556982,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":365.7603172881437,"end":366.2057928556982,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":366.2057928556982,"end":369.52666333864386,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":366.2057928556982,"end":369.52666333864386,"channel":0,"text":["But uh yeah, maybe maybe I have uh the"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":372.35106159755736,"end":372.6432775014728,"channel":0,"labels":["Noise"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":372.35106159755736,"end":372.6432775014728,"channel":0,"text":["spn"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":372.6432775014728,"end":373.3870998023486,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":372.6432775014728,"end":373.3870998023486,"channel":0,"text":["The table."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":373.3870998023486,"end":373.6029410950134,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":373.3870998023486,"end":373.6029410950134,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":373.6029410950134,"end":374.90795075681774,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":373.6029410950134,"end":374.90795075681774,"channel":0,"text":["Yes. Yes, of course."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":375.1403952258414,"end":375.63186648757613,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":375.1403952258414,"end":375.63186648757613,"channel":0,"text":["Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":375.63186648757613,"end":375.9141204856763,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":375.63186648757613,"end":375.9141204856763,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":375.9141204856763,"end":381.1164950554797,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":375.9141204856763,"end":381.1164950554797,"channel":0,"text":["Hundred percent. Yeah, I could remove the table [breath] and the carpet because [exhale] if some of them just..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":381.84905933830595,"end":384.1466464748965,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":381.84905933830595,"end":384.1466464748965,"channel":0,"text":["Put something on the carpet I will just kill them."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":384.90929720332116,"end":385.91858683929917,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":384.90929720332116,"end":385.91858683929917,"channel":0,"text":["Hundred percent"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":386.7664614591947,"end":387.5102837600705,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":386.7664614591947,"end":387.5102837600705,"channel":0,"text":["Yeah [exhale]"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":388.1537930750163,"end":389.35144702404244,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":388.1537930750163,"end":389.35144702404244,"channel":0,"text":["Clumsy people."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":389.35144702404244,"end":389.6801899159474,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":389.35144702404244,"end":389.6801899159474,"channel":0,"text":["exhale"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":395.3653699539044,"end":396.28841481613597,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":395.3653699539044,"end":396.28841481613597,"channel":0,"text":["Th- that one?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":398.5594541120657,"end":399.07083194391777,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":398.5594541120657,"end":399.07083194391777,"channel":0,"text":["Uh-huh."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":401.7897727867445,"end":405.3311930531805,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":401.7897727867445,"end":405.3311930531805,"channel":0,"text":["Ah ah you mean this one or the one with the... with the computer?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":408.5892811789479,"end":415.83636416354966,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":408.5892811789479,"end":415.83636416354966,"channel":0,"text":["I mean, the one with the computer, it was... I was just checking uh some things on the computer and I just put it there, but uh it's a really expensive one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":416.34102622305187,"end":417.7921438368139,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":416.34102622305187,"end":417.7921438368139,"channel":0,"text":["I mean, it's a special design."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":418.44552331425547,"end":419.2756821321971,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":418.44552331425547,"end":419.2756821321971,"channel":0,"text":["Uh"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":419.5678980361126,"end":422.3895606026983,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":419.5678980361126,"end":422.3895606026983,"channel":0,"text":["It's really, really a special edition."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":422.3895606026983,"end":422.95406859889863,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":422.3895606026983,"end":422.95406859889863,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":422.95406859889863,"end":426.92850204592486,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":422.95406859889863,"end":426.92850204592486,"channel":0,"text":["So uh I think uh I would keep that one. The other one, yes, you're right."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":426.92850204592486,"end":427.1244195269591,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":426.92850204592486,"end":427.1244195269591,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":427.1244195269591,"end":431.0544803465382,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":427.1244195269591,"end":431.0544803465382,"channel":0,"text":["But I might put the statue in on top of that really expensive one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":431.51194234294553,"end":431.88717412865515,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":431.51194234294553,"end":431.88717412865515,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":431.88717412865515,"end":435.04310823209437,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":431.88717412865515,"end":435.04310823209437,"channel":0,"text":["Because eh, yeah, uh I think it is it is nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":436.18713881714785,"end":441.07394405130054,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":436.18713881714785,"end":441.07394405130054,"channel":0,"text":["Yeah, yeah, but that one yeah, I can just... If you want it you can take it with you, really."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":443.0296147397319,"end":446.4680035694236,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":443.0296147397319,"end":446.4680035694236,"channel":0,"text":["I mean it is expensive but not as expensive as as it should"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":447.8560463545354,"end":449.1239440854063,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":447.8560463545354,"end":449.1239440854063,"channel":0,"text":["You're right, you're right. Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":451.3570512962794,"end":452.5591212646589,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":451.3570512962794,"end":452.5591212646589,"channel":0,"text":["Yeah, hundred percent."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":455.28156622939633,"end":461.2898515294767,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":455.28156622939633,"end":461.2898515294767,"channel":0,"text":["Yeah, the TV it's uh... I mean eh I think it's not big enough. I might get a bigger one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":462.6137986036628,"end":470.26419253804835,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":462.6137986036628,"end":470.26419253804835,"channel":0,"text":["Yeah, or maybe a projector, because I sometimes like to do movie night and then it's not, [smack] I think it's not enough."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":470.564,"end":471.28163752646975,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":470.564,"end":471.28163752646975,"channel":0,"text":["What do you think?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":479.6969246819832,"end":480.4872358766637,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":479.6969246819832,"end":480.4872358766637,"channel":0,"text":["Ah hmm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":482.8169339818901,"end":484.3045785836416,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":482.8169339818901,"end":484.3045785836416,"channel":0,"text":["Yeah, that's true. You're right."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":486.033,"end":488.0506911095259,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":486.033,"end":488.0506911095259,"channel":0,"text":["Yeah, maybe I can do some rearranging."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":488.22297992886615,"end":491.5429212728562,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":488.22297992886615,"end":491.5429212728562,"channel":0,"text":["And then... now, of course, the Bangkok is not going anywhere."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":495.26139057399746,"end":495.7129969709577,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":495.26139057399746,"end":495.7129969709577,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":495.80265412329544,"end":496.12807637992853,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":495.80265412329544,"end":496.12807637992853,"channel":0,"text":["Ah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":496.12807637992853,"end":496.61620976487825,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":496.12807637992853,"end":496.61620976487825,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":496.61620976487825,"end":500.5755368759326,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":496.61620976487825,"end":500.5755368759326,"channel":0,"text":["I mean, yeah, you have this kind of problems, but ta- take the table, take the table."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":501.1114192019414,"end":501.527,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":501.1114192019414,"end":501.527,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":"Jim jaoregan@tcd.ie, 1","created_ago":"0 minutes","completed_by":1,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-22T15:57:34.144275Z","updated_at":"2024-09-22T15:57:57.204605Z","draft_created_at":null,"lead_time":1.457,"import_id":null,"last_action":null,"task":115,"project":8,"updated_by":1,"parent_prediction":null,"parent_annotation":null,"last_created_by":null} {"id":239,"result":[{"value":{"start":8.826697442199315,"end":10.526862701343871,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":8.826697442199315,"end":10.526862701343871,"channel":0,"text":["Sorry, my nose is itching."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":14.191487105984967,"end":14.762636372728842,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":14.191487105984967,"end":14.762636372728842,"channel":0,"text":["No, it's okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":22.160088611005083,"end":26.40386048832294,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":22.160088611005083,"end":26.40386048832294,"channel":0,"text":["It's a great choice, actually, because I think you have a lot of natural light coming in."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":27.247301847351686,"end":28.933012259463826,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":27.247301847351686,"end":28.933012259463826,"channel":0,"text":["Um... So I think it's good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":28.97285988272503,"end":41.79403790798063,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":28.97285988272503,"end":41.79403790798063,"channel":0,"text":["But uh I would like uh also you to tell me, I mean, the purpose of this room is more like a a cozy room to take some rest when you come back from work or or [I] mean, what's the purpose as well?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":42.550371967526765,"end":48.613851973772775,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":42.550371967526765,"end":48.613851973772775,"channel":0,"text":["So y- you want to watch movies. I mean, what what if you can tell me a little bit, what is the purpose?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":57.228913497884335,"end":57.83326911734588,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":57.228913497884335,"end":57.83326911734588,"channel":0,"text":["Uh-huh."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":59.26114228420556,"end":80.16725880014212,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":59.26114228420556,"end":80.16725880014212,"channel":0,"text":["Okay, I see. Yeah. But but then maybe uh... Yeah, the the dark couches are not really good with that because I think if you want to chill and relax you need more light colors. So I think maybe I would go for a beige uh color for the for the couches or gray light gray that could also work."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":80.85130966612607,"end":84.35227918371022,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":80.85130966612607,"end":84.35227918371022,"channel":0,"text":["I think uh yeah you you might need to reconsider that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":84.61373014072076,"end":86.20099380062526,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":84.61373014072076,"end":86.20099380062526,"channel":0,"text":["And maybe the small one not there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":86.36038429367005,"end":91.8116951039656,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":86.36038429367005,"end":91.8116951039656,"channel":0,"text":["I would put the big one there ehn just to see the TV I mean and be comfortable with it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":94.07482679447713,"end":97.45523350113564,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":94.07482679447713,"end":97.45523350113564,"channel":0,"text":["I think... Or just put it in another place."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":97.81386211048644,"end":99.68005913321933,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":97.81386211048644,"end":99.68005913321933,"channel":0,"text":["Because uh yeah maybe..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":100.85603007223474,"end":101.20801741104202,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":100.85603007223474,"end":101.20801741104202,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":101.20801741104202,"end":107.27813868783157,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":101.20801741104202,"end":107.27813868783157,"channel":0,"text":["Maybe if you have one of this size there, uh that would be nice. Or you could have two of them."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":107.669,"end":109.07474308154036,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":107.669,"end":109.07474308154036,"channel":0,"text":["Maybe you could move that one here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":109.7986415707855,"end":111.86973030386659,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":109.7986415707855,"end":111.86973030386659,"channel":0,"text":["But you should change the color, of course."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":112.05568587908552,"end":115.93743232937909,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":112.05568587908552,"end":115.93743232937909,"channel":0,"text":["And maybe this one, you can just put it somewhere else, or maybe put it there as well."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":116.32970107961692,"end":120.96530791900325,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":116.32970107961692,"end":120.96530791900325,"channel":0,"text":["And uh you can have a like a reading area, and then you have the TV area."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":121.17223951163547,"end":122.67980792501756,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":121.17223951163547,"end":122.67980792501756,"channel":0,"text":["I think that that can also work."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":123.3040873561097,"end":128.50182531516495,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":123.3040873561097,"end":128.50182531516495,"channel":0,"text":["But maybe that table there, the one with box, I think uh that is not really functional."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":129.63189351334833,"end":134.3007067054523,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":129.63189351334833,"end":134.3007067054523,"channel":0,"text":["Um... Maybe I... I would just take it out and move this lamp, there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":135.0065366359069,"end":137.37747021994832,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":135.0065366359069,"end":137.37747021994832,"channel":0,"text":["So you have more of a cozy environment."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":140.87741979639046,"end":154.78316480252622,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":140.87741979639046,"end":154.78316480252622,"channel":0,"text":["Yeah, I think that table should go away. Yeah, I think that that could work and and this table um I mean, I don't know if it's actual f- actually functional for you but um"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":157.04246588719514,"end":157.50071355469896,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":157.04246588719514,"end":157.50071355469896,"channel":0,"text":["Mm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":158.0917866330734,"end":162.29571088713007,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":158.0917866330734,"end":162.29571088713007,"channel":0,"text":["Yeah, but maybe it's too low. Maybe you need a little bit something higher."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":165.26884010818637,"end":173.6962754336831,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":165.26884010818637,"end":173.6962754336831,"channel":0,"text":["No, I mean, you can place the items, but maybe you can uh get a higher one and then with the with the um library so you can put the books in the library."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":176.59814140231933,"end":177.51463673732695,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":176.59814140231933,"end":177.51463673732695,"channel":0,"text":["Ah, OK."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":179.30113851353744,"end":186.84,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":179.30113851353744,"end":186.84,"channel":0,"text":["Yeah, I mean, uh you could you could uh get a library there as well, and then you can put the books and things ah just there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":188.4788850456502,"end":203.3957092685181,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":188.4788850456502,"end":203.3957092685181,"channel":0,"text":["Yeah but I think the keys are are better to have them close to the door so maybe you can put a small table here, like, like th- that one maybe move it here and then you can just keep the keys and things in that corner"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":203.60822992591116,"end":203.8273918538478,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":203.60822992591116,"end":203.8273918538478,"channel":0,"text":["I..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":207.6354981751899,"end":222.56671042761482,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":207.6354981751899,"end":222.56671042761482,"channel":0,"text":["Tha- the statue? No not that not that table the table the the small one here with the drawer, because you can open the drawer and put things there inside as well. So I think that that might work. Of course the computer I don't... Do you keep it there normally?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":228.52640377561767,"end":236.68957747940325,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":228.52640377561767,"end":236.68957747940325,"channel":0,"text":["No, no, hundred percent, but I think maybe then eh that is not the best eh table to keep the the computer."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":237.6924093314768,"end":241.84867238578343,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":237.6924093314768,"end":241.84867238578343,"channel":0,"text":["Yeah, I mean, yeah, I would just go for something more functional for you."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":242.5496840338941,"end":242.66258563313417,"channel":0,"labels":["Noise"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":242.5496840338941,"end":242.66258563313417,"channel":0,"text":["smack"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":243.02121424248497,"end":251.97448224686616,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":243.02121424248497,"end":251.97448224686616,"channel":0,"text":["Eh... Maybe you can get something that uh reclines a little bit so you can have different heights and different angles. That that could work."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":252.99405798698157,"end":253.4323818428548,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":252.99405798698157,"end":253.4323818428548,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":253.8773469692715,"end":259.8498890701923,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":253.8773469692715,"end":259.8498890701923,"channel":0,"text":["And I think also you could put some color with the with the pillows because these pillows are like really dark."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":260.29287884360645,"end":260.7909741343714,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":260.29287884360645,"end":260.7909741343714,"channel":0,"text":["And..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":263.24203675310474,"end":263.9460114307193,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":263.24203675310474,"end":263.9460114307193,"channel":0,"text":["Ah..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":264.7628877075739,"end":271.4866964269712,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":264.7628877075739,"end":271.4866964269712,"channel":0,"text":["I I w- I would use a little bit more, more color because in the carpet you have red so I would just give pops of red if you want."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":271.8429481597907,"end":272.8391387413207,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":271.8429481597907,"end":272.8391387413207,"channel":0,"text":["Um."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":273.2811085735928,"end":278.58748373787597,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":273.2811085735928,"end":278.58748373787597,"channel":0,"text":["But of course really controlled like in small doses because you want this place to be a relaxing place."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":279.2534660450695,"end":279.61209465442033,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":279.2534660450695,"end":279.61209465442033,"channel":0,"text":["Mm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":281.77050758106867,"end":282.16898381368065,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":281.77050758106867,"end":282.16898381368065,"channel":0,"text":["Mm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":282.6538288279994,"end":289.739293715533,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":282.6538288279994,"end":289.739293715533,"channel":0,"text":["I mean, if you have the the gray, um [smack] the the the gray furniture then I think it might be better."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":290.5481717864551,"end":304.4611119514674,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":290.5481717864551,"end":304.4611119514674,"channel":0,"text":["Ah but I will just go more for clear colors, like ah white or beige or ochre or this kind of colors that ah are ah more easy to, ah to see ah for a long period of time."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":308.704731463982,"end":309.20282675474704,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":308.704731463982,"end":309.20282675474704,"channel":0,"text":["Mm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":309.9798554083404,"end":331.015,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":309.9798554083404,"end":331.015,"channel":0,"text":["Yeah, I mean I think for that, you could use this area as well. And and and... purchase one of those uh or- organizers in which you can put your personal stuff, like one space for the keys and the watch and even that is better because whenever you leave the place, then you can actually keep track of what you take with you and whatnot."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":331.84836369601237,"end":334.5912084304917,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":331.84836369601237,"end":334.5912084304917,"channel":0,"text":["So I think that that would be uh that would be good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":338.5705985859359,"end":342.13696086781334,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":338.5705985859359,"end":342.13696086781334,"channel":0,"text":["Yeah, I mean, the that shelf is a little bit up."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":343.0108301794999,"end":344.97000498984227,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":343.0108301794999,"end":344.97000498984227,"channel":0,"text":["So yeah, you should ah..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":346.7631480365963,"end":349.94777797390407,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":346.7631480365963,"end":349.94777797390407,"channel":0,"text":["I mean, you can maybe hang it, from the roof."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":350.37544532394696,"end":351.2653755767804,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":350.37544532394696,"end":351.2653755767804,"channel":0,"text":["That could work."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":351.58415656287,"end":358.4697971811254,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":351.58415656287,"end":358.4697971811254,"channel":0,"text":["Or also you can um you can purchase one of those uh settings in which you can put them next to the window."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":359.2496687640605,"end":361.85968808766916,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":359.2496687640605,"end":361.85968808766916,"channel":0,"text":["So uh hang it kind of to the window."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":362.38580218991973,"end":365.2548310647262,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":362.38580218991973,"end":365.2548310647262,"channel":0,"text":["And then and then it will definitely get enough light."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":365.9588057423407,"end":366.3307168927786,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":365.9588057423407,"end":366.3307168927786,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":367.24721222778624,"end":368.9224507635122,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":367.24721222778624,"end":368.9224507635122,"channel":0,"text":["I think that that can actually help."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":374.158647145799,"end":374.45,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":374.158647145799,"end":374.45,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":376.11118068559784,"end":376.55614581201456,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":376.11118068559784,"end":376.55614581201456,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":376.64912359962403,"end":379.61357166785297,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":376.64912359962403,"end":379.61357166785297,"channel":0,"text":["I mean, eh for that, I think you have too much happening on this room."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":381.99260025174993,"end":384.7420862567728,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":381.99260025174993,"end":384.7420862567728,"channel":0,"text":["I mean, it's not about liking, I think it's about position."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":385.2919225118562,"end":391.1867769838981,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":385.2919225118562,"end":391.1867769838981,"channel":0,"text":["So I think these two fit really nicely together because they have the same style, the same framing, kind of."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":391.5798487811935,"end":392.9545917837049,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":391.5798487811935,"end":392.9545917837049,"channel":0,"text":["This one is a little bit off."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":393.33558561049944,"end":396.430417683786,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":393.33558561049944,"end":396.430417683786,"channel":0,"text":["So I would maybe move this one here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":396.93336352153597,"end":400.33310788685253,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":396.93336352153597,"end":400.33310788685253,"channel":0,"text":["And then you have one focal point here with the TV."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":400.54102715598646,"end":409.0801595101379,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":400.54102715598646,"end":409.0801595101379,"channel":0,"text":["So because I think here you have a situation in which the paint is taking too much attention from the TV, and you want more directed attention there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":409.392299225684,"end":411.3647565771134,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":409.392299225684,"end":411.3647565771134,"channel":0,"text":["So I think that that can work better."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":419.8652781432304,"end":420.31688454019064,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":419.8652781432304,"end":420.31688454019064,"channel":0,"text":["Mm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":421.4430898678906,"end":424.3519663659582,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":421.4430898678906,"end":424.3519663659582,"channel":0,"text":["I I I don't know why you need, you need two of them, actually."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":429.0615270223033,"end":430.1839017441605,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":429.0615270223033,"end":430.1839017441605,"channel":0,"text":["Um."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":430.6620732232949,"end":432.6146067630937,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":430.6620732232949,"end":432.6146067630937,"channel":0,"text":["I... I would keep the red one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":433.962784683431,"end":436.6744629474769,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":433.962784683431,"end":436.6744629474769,"channel":0,"text":["Because it matches a little bit with the carpet."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":438.82768833289333,"end":440.3352567462754,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":438.82768833289333,"end":440.3352567462754,"channel":0,"text":["I would take away the blue, yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":440.54478210952396,"end":446.7145224444665,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":440.54478210952396,"end":446.7145224444665,"channel":0,"text":["And I would put that in not such a visible area, maybe in the back, whenever, uh yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":454.97759662977154,"end":456.8836412757656,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":454.97759662977154,"end":456.8836412757656,"channel":0,"text":["No, of course, hundred percent."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":459.65830316293267,"end":466.4988763520541,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":459.65830316293267,"end":466.4988763520541,"channel":0,"text":["I think it's good. I think it gives uh kind of a focal point as well, but I would actually put it in an in a higher table."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":467.0501018071674,"end":471.61287156465966,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":467.0501018071674,"end":471.61287156465966,"channel":0,"text":["Because I... I think there it doesn't... it doesn't show that much."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":471.8187509515092,"end":478.13444687360646,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":471.8187509515092,"end":478.13444687360646,"channel":0,"text":["So it's it's not something that you will stare at looking. So I think if you put it in a higher table, then it will look better."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":481.7262341963538,"end":482.72906604842734,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":481.7262341963538,"end":482.72906604842734,"channel":0,"text":["Um."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":484.34289479050597,"end":494.9090361251058,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":484.34289479050597,"end":494.9090361251058,"channel":0,"text":["Yeah, I mean that that could definitely work though they are... from different styles. So maybe if you move your plant, then you can put one in each corner and then that that might work."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":497.31984959704937,"end":507.6718641801419,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":497.31984959704937,"end":507.6718641801419,"channel":0,"text":["I think it's um it's a little bit... Merging with the wall, so it's not really uh... Taking the best out of it maybe if you actually"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":507.7847657793819,"end":508.5352293508012,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":507.7847657793819,"end":508.5352293508012,"channel":0,"text":["Uh..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":510.0388147935374,"end":514.7456848853442,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":510.0388147935374,"end":514.7456848853442,"channel":0,"text":["Yeah, I think it's not the best color, for the room and the statue."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":515.079788294805,"end":517.6898076184136,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":515.079788294805,"end":517.6898076184136,"channel":0,"text":["I think they are not uh matching properly."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":518.185,"end":531.308,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":518.185,"end":531.308,"channel":0,"text":["But maybe maybe if you if you put a small table, like two small tables next, I mean, i- on both sides of the fireplace, then maybe you can put them and then they will have this beige... Eh, it went off."]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":"Jim jaoregan@tcd.ie, 1","created_ago":"0 minutes","completed_by":1,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-22T15:57:39.292697Z","updated_at":"2024-09-22T15:57:57.332535Z","draft_created_at":null,"lead_time":1.553,"import_id":null,"last_action":null,"task":116,"project":8,"updated_by":1,"parent_prediction":null,"parent_annotation":null,"last_created_by":null} {"id":240,"result":[{"value":{"start":1.4252,"end":6.8294,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":1.4252,"end":6.8294,"channel":0,"text":["I just put my hands in front of my my mm, view, so I can check that they work."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":7.773,"end":9.4744,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":7.773,"end":9.4744,"channel":0,"text":["But, ah I don't know if they work."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":9.6769,"end":10.7726,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":9.6769,"end":10.7726,"channel":0,"text":["Mm yeah they work."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":12.1955,"end":13.4051,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":12.1955,"end":13.4051,"channel":0,"text":["Yes, yes, they work."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":13.594,"end":13.8921,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":13.594,"end":13.8921,"channel":0,"text":["OK."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":15.7967,"end":17.0321,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":15.7967,"end":17.0321,"channel":0,"text":["You are on top of the box."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":18.9854,"end":19.402,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":18.9854,"end":19.402,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":19.7241,"end":19.8304,"channel":0,"labels":["Laughter"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":19.7241,"end":19.8304,"channel":0,"text":["laugh"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":22.2689,"end":22.9803,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":22.2689,"end":22.9803,"channel":0,"text":["Yeah it's OK."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":25.747,"end":27.0178,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":25.747,"end":27.0178,"channel":0,"text":["Yeah it's really nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":27.0178,"end":29.5613,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":27.0178,"end":29.5613,"channel":0,"text":["I mean uh I really like the decoration and all."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":29.887,"end":36.6887,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":29.887,"end":36.6887,"channel":0,"text":["I did a great work here cause it's a little bit Asian style. So as you can see, all the furniture is really, really short."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":36.9152,"end":37.1123,"channel":0,"labels":["Breath"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":36.9152,"end":37.1123,"channel":0,"text":["breath"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":37.1608,"end":51.6737,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":37.1608,"end":51.6737,"channel":0,"text":["So the idea, is, to have some mm seat of course, but eh to be, you know in this eh, I mean Japanese culture and everything, that ah that everything is really low you know and you you you are, eating almost on the floor."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":52.037,"end":61.0669,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":52.037,"end":61.0669,"channel":0,"text":["So I was really designing this whole place with that idea. I think it's really trending now, and I really like it and I think the the window and everything gives really that vibe."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":61.7221,"end":68.5964,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":61.7221,"end":68.5964,"channel":0,"text":["And the balcony I mean, I think the whole setting is really nice and ah and it gives that kind of, vibe."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":71.0394,"end":74.8496,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":71.0394,"end":74.8496,"channel":0,"text":["Yes, but eh that's because it is expensive actually yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":75.1199,"end":84.102,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":75.1199,"end":84.102,"channel":0,"text":["Ah, so ah I mean, the paintings, and and everything is uh, everything is really, really expensive. Even the sculptures there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":84.4947,"end":93.7691,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":84.4947,"end":93.7691,"channel":0,"text":["Uh yeah they are from really really, um, renowned artists. And uh, I mean, not to brag but they are really expensive."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":95.9196,"end":96.5765,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":95.9196,"end":96.5765,"channel":0,"text":["Yeah of course."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":97.3147,"end":102.5589,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":97.3147,"end":102.5589,"channel":0,"text":["I mean, that painting is, ah neoclassic and it's uh really abstract."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":102.8997,"end":112.1876,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":102.8997,"end":112.1876,"channel":0,"text":["And I really like that cause it gives a little bit of uh, of uh that vibe of uh something ethereum and something really, light."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":112.5282,"end":134.7369,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":112.5282,"end":134.7369,"channel":0,"text":["So I think ah it really fits ah and and of course the composition with the lamp and the plant is, there so you get ah in in the night I mean when I turn on the lamp it gives a really nice vibe ah towards that corner because you have uh the light coming to the paint and then of course with the whole setting it gives really cozy environment."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":137.7739,"end":145.7932,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":137.7739,"end":145.7932,"channel":0,"text":["Yeah, I mean, that's that's a really particular sculpture because, the artist did this ah based on ah his childhood dog."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":146.3549,"end":159.7151,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":146.3549,"end":159.7151,"channel":0,"text":["Ehm and I think it's really, really eh nice and humble from, in the side of the artist, cause, I mean, doing a sculpture of, your childhood dog or your childhood pet, I think that is really, really noble."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":160.0835,"end":166.9071,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":160.0835,"end":166.9071,"channel":0,"text":["And ah, I I I think there is a lot of ah there's a lot of, emotion in that kind of work."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":169.3561,"end":187.6149,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":169.3561,"end":187.6149,"channel":0,"text":["Yeah, that that guy, it's from a different artist, ah but ah basically um, yeah, he did some ah some ah work, voluntary work, and he was working in this ah rescue, um animals from the street, of course ah, in different countries, but"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":187.8964,"end":208.5364,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":187.8964,"end":208.5364,"channel":0,"text":["Ah, basically um there was this dog he really liked and um, and basically, ah he was, um one leg was hurt and that's why he's like lifting one leg and ah and basically he did a sculpture based on that dog and I I think it's really, ah it's a really nice story too behind it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":210.2893,"end":219.7284,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":210.2893,"end":219.7284,"channel":0,"text":["Ah it's really it's really hard to pick actually um I don't know if I can actually make a decision, but my favorite from the whole room."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":220.1629,"end":224.0622,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":220.1629,"end":224.0622,"channel":0,"text":["It's the one in the back. The one in the back of black one"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":225.733,"end":227.9542,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":225.733,"end":227.9542,"channel":0,"text":["Yeah, that that is that is my favorite one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":228.521,"end":229.7471,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":228.521,"end":229.7471,"channel":0,"text":["Um."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":230.5922,"end":236.9832,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":230.5922,"end":236.9832,"channel":0,"text":["So yeah, that that that that is what I like the most. And I don't know if you realized, ah but I have the same painting in both."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":237.2633,"end":243.6003,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":237.2633,"end":243.6003,"channel":0,"text":["And it's just to generate an equilibrium because eh the Feng Shui says that we should keep an equilibrium on things."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":243.796,"end":246.3375,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":243.796,"end":246.3375,"channel":0,"text":["So that's why I want kept there and another here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":248.5161,"end":249.4462,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":248.5161,"end":249.4462,"channel":0,"text":["Yes, of course."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":249.9972,"end":254.0625,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":249.9972,"end":254.0625,"channel":0,"text":["Yes. And as you can see, of course also the colors, are really matching."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":254.3311,"end":260.8651,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":254.3311,"end":260.8651,"channel":0,"text":["And ah I use ah some copper, and ah white. And I mean the colors are really really soothing."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":262.867,"end":267.1493,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":262.867,"end":267.1493,"channel":0,"text":["Ah yes, this is a gift ah, from a friend."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":267.5317,"end":270.089,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":267.5317,"end":270.089,"channel":0,"text":["Ah, he inherited from his great-grandmother."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":270.6349,"end":275.6588,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":270.6349,"end":275.6588,"channel":0,"text":["And it's ah an actual uh Art Nouveau um piece."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":276.0254,"end":276.2537,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":276.0254,"end":276.2537,"channel":0,"text":["S-"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":278.14,"end":278.7565,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":278.14,"end":278.7565,"channel":0,"text":["No, no, no."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":278.9515,"end":282.4247,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":278.9515,"end":282.4247,"channel":0,"text":["It's it's not a sculpture it's ah it's ah metalwork."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":282.9415,"end":285.3957,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":282.9415,"end":285.3957,"channel":0,"text":["And eh it's really really nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":285.6762,"end":286.9876,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":285.6762,"end":286.9876,"channel":0,"text":["It's an original piece."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":287.3345,"end":295.2914,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":287.3345,"end":295.2914,"channel":0,"text":["And um of course, it costs a fortune but, y'know my friend was like, no, I don't like this style and I was like oh my god this is so gorgeous."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":295.5792,"end":298.0961,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":295.5792,"end":298.0961,"channel":0,"text":["I will just put it in my ah living room."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":302.1047,"end":307.6378,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":302.1047,"end":307.6378,"channel":0,"text":["Mm yeah this I wanted to make a separation, cause we have some kind of style there and some other different here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":308.4939,"end":309.917,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":308.4939,"end":309.917,"channel":0,"text":["That's why I I separated it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":310.371,"end":317.5309,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":310.371,"end":317.5309,"channel":0,"text":["Eh so basically, eh in this side we have mol- more like modern pieces and in this one it's more, classic pieces."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":318.2732,"end":319.8666,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":318.2732,"end":319.8666,"channel":0,"text":["Th- that's why the separation."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":322.8402,"end":325.4525,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":322.8402,"end":325.4525,"channel":0,"text":["Yeah. The red one is ah a really special one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":325.7024,"end":340.219,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":325.7024,"end":340.219,"channel":0,"text":["It's a [click] unique piece ah that I ash- actually asked for me cause um this artist would do this, in, orange that's her color normally but I was like, this piece would look, so nice in red."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":340.4633,"end":347.1213,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":340.4633,"end":347.1213,"channel":0,"text":["And it, would actually fit with, whatever I wanted that it's just put a small, touches of color in my room."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":347.6333,"end":352.0209,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":347.6333,"end":352.0209,"channel":0,"text":["And then em, she made it for me specifically, that was that was great."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":352.7609,"end":353.3466,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":352.7609,"end":353.3466,"channel":0,"text":["Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":362.2516,"end":364.2215,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":362.2516,"end":364.2215,"channel":0,"text":["I mean, this is more like a practical thing."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":365.0202,"end":369.4732,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":365.0202,"end":369.4732,"channel":0,"text":["Ah, but yeah, I mean, I I maybe should set something next to door."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":369.9058,"end":372.3171,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":369.9058,"end":372.3171,"channel":0,"text":["And then ah just ah to leave things there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":373.012,"end":375.1956,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":373.012,"end":375.1956,"channel":0,"text":["Cause yeah, that might be you might be right."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":375.3008,"end":376.6271,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":375.3008,"end":376.6271,"channel":0,"text":["Uh, there are a couple of things."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":376.893,"end":382.3769,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":376.893,"end":382.3769,"channel":0,"text":["But I was thinking of putting something to actually, um stand out, like a central piece."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":384.673,"end":387.3411,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":384.673,"end":387.3411,"channel":0,"text":["I mean, this is ah, the keys, of the apartment."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":387.9722,"end":392.8585,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":387.9722,"end":392.8585,"channel":0,"text":["And that is ah, the card, for the entrance, cause we have a BIP code."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":393.6023,"end":394.8872,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":393.6023,"end":394.8872,"channel":0,"text":["And then that's the remote."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":394.9941,"end":398.598,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":394.9941,"end":398.598,"channel":0,"text":["I mean, for the remote, I might leave it on the couch."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":399.8113,"end":400.5087,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":399.8113,"end":400.5087,"channel":0,"text":["Yes, yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":400.5087,"end":403.9904,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":400.5087,"end":403.9904,"channel":0,"text":["I mean, this is a movie style. I really like to watch movies."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":404.3502,"end":411.757,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":404.3502,"end":411.757,"channel":0,"text":["And then this ah s-, this sofa is really working for that. So, the whole set is just put to be able to see the movies."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":412.107,"end":415.2803,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":412.107,"end":415.2803,"channel":0,"text":["So I invite some friends over and and we watch the movies."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":415.2803,"end":416.1172,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":415.2803,"end":416.1172,"channel":0,"text":["It's really nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":419.7535,"end":421.4785,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":419.7535,"end":421.4785,"channel":0,"text":["Um, not really."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":422.3574,"end":431.6919,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":422.3574,"end":431.6919,"channel":0,"text":["Ah, but now that you mention, yeah, I think one of the, one of the the service ladies took one because, in my last meeting, one of my friends spill something over."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":432.1652,"end":433.7515,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":432.1652,"end":433.7515,"channel":0,"text":["And then she took it to clean."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":434.601,"end":435.0865,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":434.601,"end":435.0865,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":438.366,"end":443.3784,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":438.366,"end":443.3784,"channel":0,"text":["Yeah, of course. But I think whenever it's ah it's back, she would put it there again, yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":444.1094,"end":448.0184,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":444.1094,"end":448.0184,"channel":0,"text":["Yeah, yeah. Cause she she puts a special products to remove the stains."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":448.6856,"end":449.1326,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":448.6856,"end":449.1326,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":449.2672,"end":452.1995,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":449.2672,"end":452.1995,"channel":0,"text":["Even though, of course, it's everything designed for this kind of things."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":452.4754,"end":456.244,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":452.4754,"end":456.244,"channel":0,"text":["But still, she puts uh some extra products to remove it faster."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":456.4222,"end":456.8885,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":456.4222,"end":456.8885,"channel":0,"text":["Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":465.7526,"end":467.012,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":465.7526,"end":467.012,"channel":0,"text":["Eh, I don't see that many."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":469.2728,"end":469.9121,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":469.2728,"end":469.9121,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":472.2627,"end":472.7482,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":472.2627,"end":472.7482,"channel":0,"text":["Mhm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":476.1756,"end":480.1667,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":476.1756,"end":480.1667,"channel":0,"text":["Eh it's because I, I have so much uh green."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":482.1616,"end":482.6375,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":482.1616,"end":482.6375,"channel":0,"text":["Sad."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":484.5881,"end":490.5172,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":484.5881,"end":490.5172,"channel":0,"text":["No, I think it's just there because um, I wanted a minimalist approach."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":491.104,"end":499.086,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":491.104,"end":499.086,"channel":0,"text":["So I, I don't want that many things. And also eh Feng Shui says that you shouldn't keep that many plants inside home cause they um they take oxygen."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":499.626,"end":501.887,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":499.626,"end":501.887,"channel":0,"text":["And I mean, it's not good for your health."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":502.286,"end":503.2186,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":502.286,"end":503.2186,"channel":0,"text":["So yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":504.4799,"end":512.4676,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":504.4799,"end":512.4676,"channel":0,"text":["Ah, the box is there just because I was unpacking one of the sculptures I sent for restoration cause one of my clumsy friends came and and"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":513.629,"end":521.3689,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":513.629,"end":521.3689,"channel":0,"text":["They just drop it and then it broke. So. But I need to ask the lady that she just removed this cause yeah, that's n-, that's not good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":521.6837,"end":522.621,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":521.6837,"end":522.621,"channel":0,"text":["I'm sorry for that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":525.7897,"end":526.5204,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":525.7897,"end":526.5204,"channel":0,"text":["The plates."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":527.7125,"end":528.2797,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":527.7125,"end":528.2797,"channel":0,"text":["Uh-huh."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":529.3568,"end":532.1112,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":529.3568,"end":532.1112,"channel":0,"text":["Okay. I think they, [spn] they just forgot."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":533.3986,"end":535.9126,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":533.3986,"end":535.9126,"channel":0,"text":["Yeah, these ladies. Come on!"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":536.8959,"end":540.596,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":536.8959,"end":540.596,"channel":0,"text":["Yeah, even the chairs are not aligned. I am really, really into details."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":540.8945,"end":545.3115,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":540.8945,"end":545.3115,"channel":0,"text":["And I really like the chairs to be aligned and really close to the to the table."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":548.7718,"end":549.214,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":548.7718,"end":549.214,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":551.7617,"end":552.2328,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":551.7617,"end":552.2328,"channel":0,"text":["Uh-huh."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":553.2787,"end":553.6633,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":553.2787,"end":553.6633,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":554.9083,"end":571.6768,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":554.9083,"end":571.6768,"channel":0,"text":["Yeah yeah yeah this is uh this is antique and uh yeah I... I got it, I got it from uh my dad's family, my grandma from my dad's side and then uh it was really nice cause um it's it's..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":573.3475,"end":574.9434,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":573.3475,"end":574.9434,"channel":0,"text":["quite unique piece."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":575.1837,"end":590.6634,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":575.1837,"end":590.6634,"channel":0,"text":["I haven't seen it in ah other places and I think it gives really... a really nice touch to the room and also it's like the center or the focus of attention from the table cause it gives like, uh, yeah, like a central point and a focus."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":595.3807,"end":597.8419,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":595.3807,"end":597.8419,"channel":0,"text":["Um, my favorite item here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":598.8032,"end":599.1686,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":598.8032,"end":599.1686,"channel":0,"text":["Mm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":600.5284,"end":601.1389,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":600.5284,"end":601.1389,"channel":0,"text":["Ah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":601.5358,"end":603.2856,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":601.5358,"end":603.2856,"channel":0,"text":["It's really hard to pick actually."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":605.5213,"end":608.2564,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":605.5213,"end":608.2564,"channel":0,"text":["But I think that statue there, the white one, the lady."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":608.8732,"end":610.4835,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":608.8732,"end":610.4835,"channel":0,"text":["Yeah, I think that's my favorite."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":612.8815,"end":617.0955,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":612.8815,"end":617.0955,"channel":0,"text":["Ah the least? Ah, the trash can. That trash can is awful."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":618.3788,"end":619.5613,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":618.3788,"end":619.5613,"channel":0,"text":["I really don't like it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":619.7632,"end":622.282,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":619.7632,"end":622.282,"channel":0,"text":["But uh I need to find a replacement for that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":622.7581,"end":628.3928,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":622.7581,"end":628.3928,"channel":0,"text":["And ah, it's ah, it's a little bit hard to find a trash can that matches the place."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":628.685,"end":631.5594,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":628.685,"end":631.5594,"channel":0,"text":["Cause trash cans are not really well designed, actually."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":632.1654,"end":634.8512,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":632.1654,"end":634.8512,"channel":0,"text":["And ah, and then it's really complicated, you know."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":635.7434,"end":639.7885,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":635.7434,"end":639.7885,"channel":0,"text":["Even though it was really expensive, but it's not... it doesn't match the place quite well."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":642.2723,"end":666.041,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":642.2723,"end":666.041,"channel":0,"text":["Uh which one? This one? Ah, it's uh... I mean I keep it it's, it's dearest to my heart because... Um you know, it was my aunts and I had a really special, um relationship with her. It might, you might be right that it doesn't match really the decoration of the room, but it's really really dearest to my heart. So I... I really wanted to keep it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":674.9593,"end":675.4976,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":674.9593,"end":675.4976,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":679.205,"end":688.4882,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":679.205,"end":688.4882,"channel":0,"text":["Ah, it's because they... they are for different uh situations. So whenever I am chilling here, then the lights on the app are not on and I just keep the lamps."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":688.7284,"end":692.4845,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":688.7284,"end":692.4845,"channel":0,"text":["And then eh whenever I have the lights on, then I don't keep the lamps."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":692.7874,"end":695.4708,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":692.7874,"end":695.4708,"channel":0,"text":["It's it's eh... It's more of a true situation thing."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":695.934,"end":705.1426,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":695.934,"end":705.1426,"channel":0,"text":["But if I need to pick, I would pick my aunt's one, cause, you know, that's really special. Though I really like that one. I think it really matches with the... with the room style."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":712.2928,"end":714.8838,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":712.2928,"end":714.8838,"channel":0,"text":["Mm yeah it's a simple lamp, yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":718.7412,"end":720.947,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":718.7412,"end":720.947,"channel":0,"text":["Aha. No, no, no, no, no. No, not really."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":721.3693,"end":721.874,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":721.3693,"end":721.874,"channel":0,"text":["Not really."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":722.096,"end":726.4319,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":722.096,"end":726.4319,"channel":0,"text":["But I might consider that because you know, in winter, th- the plants don't get enough light."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":726.9348,"end":736.9996,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":726.9348,"end":736.9996,"channel":0,"text":["Uh so yeah, but but yeah, I mean, sometimes, eh whenever it's not, I mean, eh there is not that much light, I take them out in the balcony."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":737.56,"end":740.6407,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":737.56,"end":740.6407,"channel":0,"text":["Eh cause cause it it's nice for them."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":746.6029,"end":746.9875,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":746.6029,"end":746.9875,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":750.233,"end":764.3828,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":750.233,"end":764.3828,"channel":0,"text":["But I don't think so. I think it looks nice. It's a nice division and it it gives you a nice view of the... I mean, it's a cen- it's a focus point that then leads you to the... to the green garden, yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":767.6689,"end":772.4344,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":767.6689,"end":772.4344,"channel":0,"text":["Um no, I mean, ah it might have been a little bit damaged with the moving."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":773.314,"end":779.9866,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":773.314,"end":779.9866,"channel":0,"text":["Cause, um yeah, I mean, they need a certain time to get used of the place."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":780.278,"end":781.2666,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":780.278,"end":781.2666,"channel":0,"text":["That might be the case."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":781.658,"end":785.408,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":781.658,"end":785.408,"channel":0,"text":["But I I I am sure that it will actually recover."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":785.9436,"end":786.5205,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":785.9436,"end":786.5205,"channel":0,"text":["Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":787.9212,"end":788.6711,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":787.9212,"end":788.6711,"channel":0,"text":["Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":791.684,"end":792.104,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":791.684,"end":792.104,"channel":0,"text":["No worries."]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":"Jim jaoregan@tcd.ie, 1","created_ago":"0 minutes","completed_by":1,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-22T15:57:44.531158Z","updated_at":"2024-09-22T15:57:57.469214Z","draft_created_at":null,"lead_time":2.092,"import_id":null,"last_action":null,"task":117,"project":8,"updated_by":1,"parent_prediction":null,"parent_annotation":null,"last_created_by":null} {"id":241,"result":[{"value":{"start":11.671996443478452,"end":12.223221898591726,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":11.671996443478452,"end":12.223221898591726,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":17.276490706609067,"end":17.914052678788277,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":17.276490706609067,"end":17.914052678788277,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":19.7669671604341,"end":21.65308799479759,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":19.7669671604341,"end":21.65308799479759,"channel":0,"text":["Yeah, it's a really nice place actually."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":22.957218602708167,"end":24.17921238271832,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":22.957218602708167,"end":24.17921238271832,"channel":0,"text":["Oh, you don't like it? Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":24.903110871963463,"end":26.929935418040383,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":24.903110871963463,"end":26.929935418040383,"channel":0,"text":["Um, what what do you don't like?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":29.62712677198793,"end":30.21155857981887,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":29.62712677198793,"end":30.21155857981887,"channel":0,"text":["Mhm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":35.616999245546374,"end":43.44610214263731,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":35.616999245546374,"end":43.44610214263731,"channel":0,"text":["Yeah, I mean, I think it's a little bit unbalanced, and maybe if you balanced it more appropriately, then it will actually work."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":49.405364945181475,"end":60.425127214249464,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":49.405364945181475,"end":60.425127214249464,"channel":0,"text":["I think um, yeah, I think the the mm actual problem, for example, with the with the one in the back, is that it doesn't it doesn't show, actually, because it's black on a black background."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":60.780745062506845,"end":75.85516494358815,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":60.780745062506845,"end":75.85516494358815,"channel":0,"text":["So you need to do something like you did with that one there, which is white, and then the the the lady, uh that it's white, and then on a black background, then it actually, by contrast, you can actually see it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":76.22638238117324,"end":79.33119395641313,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":76.22638238117324,"end":79.33119395641313,"channel":0,"text":["So uh the the one in the back it's actually not visible."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":80.21017631253817,"end":83.94109137166423,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":80.21017631253817,"end":83.94109137166423,"channel":0,"text":["So I think ah you should move it to somewhere where where you can actually..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":86.17067785313931,"end":89.31382287302466,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":86.17067785313931,"end":89.31382287302466,"channel":0,"text":["Yeah, of course. Or you can paint it in a color, I think."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":89.632,"end":92.7286754291142,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":89.632,"end":92.7286754291142,"channel":0,"text":["Because uh that that could also add up to the situation."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":92.96214108130698,"end":98.73697932472952,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":92.96214108130698,"end":98.73697932472952,"channel":0,"text":["Maybe you could have different colors that match uh perfectly the contrast with the with the pieces."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":99.05243967554735,"end":111.05563817278083,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":99.05243967554735,"end":111.05563817278083,"channel":0,"text":["But then if you want to to remove some of the pieces, I think ah the the two ah pieces, the one the red one and the brown one there, eh those are the one down there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":111.95525564952729,"end":119.64973095420929,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":111.95525564952729,"end":119.64973095420929,"channel":0,"text":["Uh the red one and the one down there. It's uh on the last shelf on the middle one. Yeah, the the the brown one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":119.74935001236229,"end":134.8434014270337,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":119.74935001236229,"end":134.8434014270337,"channel":0,"text":["It's like a base. Ehm. They mm they are too flat I think for for the rest the rest are more like vertical pieces and those are super horizontal pieces then it's not um... It's not working for the place I think"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":137.5384789987748,"end":154.05934692382013,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":137.5384789987748,"end":154.05934692382013,"channel":0,"text":["Um yeah they are a little bit creepy but I mean it's it's a matter of uh choice i- if you don't like them you can actually remove them I think that that would be totally fine even maybe you can actually put some of these pieces there and then you can maybe have books here"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":158.1616977340755,"end":167.4080224544758,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":158.1616977340755,"end":167.4080224544758,"channel":0,"text":["Eh I think the the orange one fits better with the with the rest of the composition than the... The green one it's a little bit sticking out and it's not eh that good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":168.56604733020134,"end":169.96403477961513,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":168.56604733020134,"end":169.96403477961513,"channel":0,"text":["I think it's not that good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":171.0073340033066,"end":171.3560007068421,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":171.0073340033066,"end":171.3560007068421,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":172.34908896664456,"end":177.53192450915753,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":172.34908896664456,"end":177.53192450915753,"channel":0,"text":["And then the paintings, I think having two of the same, it's not eh really a smart choice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":178.01927262062037,"end":183.74298787375682,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":178.01927262062037,"end":183.74298787375682,"channel":0,"text":["I think maybe you can actually have two different or maybe just remove this one and keep that one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":184.44718086491562,"end":196.89164001461955,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":184.44718086491562,"end":196.89164001461955,"channel":0,"text":["Because otherwise, I mean, in this space, you still have the TV here. So, uh I mean, that that'll that paint is not even visible for... I mean, it's it's not really well appreciated there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":201.72540741878467,"end":202.16705190992965,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":201.72540741878467,"end":202.16705190992965,"channel":0,"text":["Mm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":206.15810686019472,"end":206.806,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":206.15810686019472,"end":206.806,"channel":0,"text":["Mhm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":210.66807534311445,"end":232.40775671589816,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":210.66807534311445,"end":232.40775671589816,"channel":0,"text":["yeah of course I mean I think that the the lighting on the roof is really nice because it gives kind of a natural uh style so I think that that is good um regarding lamps yeah you might have too many of them so maybe this one I will remove this one I think it it might look nice in the night so uh I think this one you you might be able to keep it"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":233.41191962531923,"end":252.0276684808574,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":233.41191962531923,"end":252.0276684808574,"channel":0,"text":["And the chandelier, the chandelier uh it's a little bit low, I mean in terms of height because you have a low table now so I think I would just change this whole setup and basically the table and the chairs a little bit upper because this looks like kindergarten style."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":256.61101841007235,"end":263.64487855756744,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":256.61101841007235,"end":263.64487855756744,"channel":0,"text":["Um yes, you are right. I mean that's ah yeah, then maybe you should just just remove it because because yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":265.26337346427886,"end":279.68170173117244,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":265.26337346427886,"end":279.68170173117244,"channel":0,"text":["Ah no, that wouldn't look nice. I think, ah yeah, you you can actually remove it because basically I mean the lighting here is really nice and I don't think you would need extra lighting for using the table for dinner for example. So then maybe you can actually remove it fully."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":283.68379424786275,"end":284.1752482680842,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":283.68379424786275,"end":284.1752482680842,"channel":0,"text":["I mean..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":284.6212334266769,"end":285.1990239639643,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":284.6212334266769,"end":285.1990239639643,"channel":0,"text":["Mm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":286.54720188430156,"end":299.93251956371114,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":286.54720188430156,"end":299.93251956371114,"channel":0,"text":["Yeah, maybe if you remove them, like.... in in in a cross shape, so that one, that one, that one, and that one, ah then then maybe it works. But I wouldn't I wouldn't bet on that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":300.28432238361546,"end":314.6291626782835,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":300.28432238361546,"end":314.6291626782835,"channel":0,"text":["Maybe you can also ah make ehm a special lighting setup in which you can actually control buttons, and then you can actually control the lighting. So I want to turn this one and this one, and then you can just keep on changing the setup."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":314.92801985274247,"end":323.3407840028321,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":314.92801985274247,"end":323.3407840028321,"channel":0,"text":["But anyways, I [breath] I I would recommend you just to remove the full thing because I don't think it it it it's providing anything to the room."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":327.32499277224355,"end":327.8762182273568,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":327.32499277224355,"end":327.8762182273568,"channel":0,"text":["Mhm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":329.27752631204237,"end":337.1187071991417,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":329.27752631204237,"end":337.1187071991417,"channel":0,"text":["Yeah, I think that one, that one might work where the, the black one is, that it's not eh not being eh good right now."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":339.95237009641687,"end":351.8292513699496,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":339.95237009641687,"end":351.8292513699496,"channel":0,"text":["Yeah, the golden one, that... there it would really work nicely because ah you have a black background and then with the with the c- with the gold one it's gonna look nice, I think."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":355.35400792077814,"end":356.15096038600217,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":355.35400792077814,"end":356.15096038600217,"channel":0,"text":["Um."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":357.02760809774855,"end":373.48823555583914,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":357.02760809774855,"end":373.48823555583914,"channel":0,"text":["that one eh I think uh you should... place it in eh in another cupboard maybe you can remove one of the doors of the cupboards and then you can actually put it there because um I think that that one it's not working or maybe you just remove it because I don't think it's working"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":380.9816937517377,"end":381.57940810065566,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":380.9816937517377,"end":381.57940810065566,"channel":0,"text":["Um."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":381.73215732315697,"end":384.2890464824173,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":381.73215732315697,"end":384.2890464824173,"channel":0,"text":["So I would remove the one on the corner there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":385.3565004529183,"end":387.19613239347706,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":385.3565004529183,"end":387.19613239347706,"channel":0,"text":["Yeah, the armchair."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":387.8248609910785,"end":388.3827277167353,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":387.8248609910785,"end":388.3827277167353,"channel":0,"text":["Ehm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":388.4424991516271,"end":396.83249639168173,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":388.4424991516271,"end":396.83249639168173,"channel":0,"text":["And also I feel that they are too too low in height, because like it's going to be really difficult to to stand up."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":397.910422284086,"end":416.29115771159877,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":397.910422284086,"end":416.29115771159877,"channel":0,"text":["Yeah of course. So then then I think uh it would be it would be nice to go for a a higher um I mean yeah a whole set maybe you can actually have uh an l-shape um sofa so then it would be nice for you to be able to see the movies."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":417.0130666229199,"end":428.7228273156639,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":417.0130666229199,"end":428.7228273156639,"channel":0,"text":["Uh I think that that can work and also I mean the tables I think they are thought for this height of uh couches, but if you go for higher height, then you need higher table as well."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":432.77556931424925,"end":444.6109295912401,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":432.77556931424925,"end":444.6109295912401,"channel":0,"text":["I think the size is nice, but though if you would like for a bigger size, I would just recommend a projector then because I don't know if you're gonna be able to mm to get a bigger size than this"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":448.1408000774042,"end":451.4598472060593,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":448.1408000774042,"end":451.4598472060593,"channel":0,"text":["Ah, I mean, yeah, you can make like cinema style."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":451.8583234386713,"end":457.2741316379314,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":451.8583234386713,"end":457.2741316379314,"channel":0,"text":["Eh but um, but I think this size is big, maybe for the room, you're right, maybe it's not big enough."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":457.65923376882233,"end":463.96033812443414,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":457.65923376882233,"end":463.96033812443414,"channel":0,"text":["But maybe you can actually, um. [smack] Yeah, maybe you can put a projector directly and just work with that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":470.68651898710806,"end":471.29751587711314,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":470.68651898710806,"end":471.29751587711314,"channel":0,"text":["Chairs."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":473.14139807547895,"end":478.48001119772516,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":473.14139807547895,"end":478.48001119772516,"channel":0,"text":["Um I... then maybe y- you could pick a smaller table and then just with four chairs."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":479.51898619911384,"end":489.34924973189936,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":479.51898619911384,"end":489.34924973189936,"channel":0,"text":["And uh in that in that case, uh I would pick like taller chairs again, I think this was this this whole room was make was made for a door."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":489.8488767974183,"end":491.6420198441723,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":489.8488767974183,"end":491.6420198441723,"channel":0,"text":["And then our door family."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":491.8856481195869,"end":493.7069795839031,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":491.8856481195869,"end":493.7069795839031,"channel":0,"text":["And then em these ones."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":493.7069795839031,"end":498.8013798746542,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":493.7069795839031,"end":498.8013798746542,"channel":0,"text":["Eh yeah, I think and I would pick a different color because this brownish celibate uh...."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":498.8013798746542,"end":500.0040695913909,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":498.8013798746542,"end":500.0040695913909,"channel":0,"text":["Yeah, dark."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":504.0102135393993,"end":515.5247680601001,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":504.0102135393993,"end":515.5247680601001,"channel":0,"text":["Your laptop. If you actually pick this to be smaller you could put it a little bit inside and then you can make b- you can maybe have a desk area here so you can actually work with the with the laptop."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":516.2154601966275,"end":523.1449850843662,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":516.2154601966275,"end":523.1449850843662,"channel":0,"text":["I think that that would work because uh like working in the laptop in the table I don't think that's functional for you."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":527.004820363011,"end":527.4198997719818,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":527.004820363011,"end":527.4198997719818,"channel":0,"text":["Mhm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":530.6602728372836,"end":531.1052379637003,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":530.6602728372836,"end":531.1052379637003,"channel":0,"text":["This one?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":532.2854861031592,"end":532.9097655342514,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":532.2854861031592,"end":532.9097655342514,"channel":0,"text":["Or that one?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":534.2212333453313,"end":536.5306981945971,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":534.2212333453313,"end":536.5306981945971,"channel":0,"text":["The plant in the middle of the couches?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":537.5790329495825,"end":537.8679282182262,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":537.5790329495825,"end":537.8679282182262,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":538.2996108035559,"end":538.8508362586691,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":538.2996108035559,"end":538.8508362586691,"channel":0,"text":["Ah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":539.0168680222575,"end":543.8994589646067,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":539.0168680222575,"end":543.8994589646067,"channel":0,"text":["That one, it seems like it doesn't have enough light because it's a little bit sad."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":544.9938811785843,"end":553.2460224915177,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":544.9938811785843,"end":553.2460224915177,"channel":0,"text":["So I would just put them really, really next to the windows and where the sun comes because you're not facing south here, you're facing east."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":553.4153748903778,"end":563.3864361619251,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":553.4153748903778,"end":563.3864361619251,"channel":0,"text":["So yeah, I would put it like next to the do- next to the door and really keep it there in the mornings because um I think it really needs some light."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":564.0429359548418,"end":568.9593178059889,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":564.0429359548418,"end":568.9593178059889,"channel":0,"text":["Because if you compare with the other one, I think the light comes to that one, but not to this one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":573.2914861628492,"end":573.6966036660046,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":573.2914861628492,"end":573.6966036660046,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":576.4238001437884,"end":576.939,"channel":0,"labels":["Speech"]},"from_name":"labels","to_name":"audio","type":"labels"},{"value":{"start":576.4238001437884,"end":576.939,"channel":0,"text":["You're welcome."]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":"Jim jaoregan@tcd.ie, 1","created_ago":"0 minutes","completed_by":1,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-22T15:57:48.691465Z","updated_at":"2024-09-22T15:57:57.585843Z","draft_created_at":null,"lead_time":1.587,"import_id":null,"last_action":null,"task":118,"project":8,"updated_by":1,"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("/Users/joregan/Playing/hsi_ctmedit/textgrid").glob("*.TextGrid"):
wavfile = file.stem + ".wav"
if wavfile in mapping:
print(wavfile, mapping[wavfile])
hsi_7_0719_227_002_inter.wav 69 hsi_7_0719_209_003_inter.wav 61 hsi_7_0719_227_003_inter.wav 70 hsi_7_0719_211_004_inter.wav 66 hsi_6_0718_209_001_inter.wav 59 hsi_7_0719_222_002_inter.wav 67 hsi_7_0719_209_001_inter.wav 60 hsi_7_0719_222_004_inter.wav 68 hsi_7_0719_211_002_inter.wav 65 hsi_7_0719_210_002_inter.wav 63 hsi_7_0719_210_003_inter.wav 64 hsi_5_0718_209_001_inter.wav 56 hsi_5_0718_209_003_inter.wav 58 hsi_7_0719_210_001_inter.wav 62 hsi_5_0718_209_002_inter.wav 57