Adding WhisperX output via Label Studio API
Because their import sucks
• 67 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 = slurpfile("label_studio_whisperx")
input_dir = "/Users/joregan/Playing/hsi/audio/whisperx-json/"
import requests
import json
from pathlib import Path
headers = {
"Authorization": f"Token {api_token}"
}
def get_projects():
req = requests.get(f"{host}projects", headers=headers)
assert req.status_code == 200
data = json.loads(req.text)
return data
def get_project_id_from_name(name):
projects = get_projects()
for res in projects["results"]:
if res["title"].strip() == name.strip():
return res["id"]
get_project_id_from_name("Main 5")
6
def get_tasks(projectid):
req = requests.get(f"{host}tasks", headers=headers, params={"project": projectid})
assert req.status_code == 200
data = json.loads(req.text)
return data
def index_task_filestem_to_id(tasks_data):
tasks = tasks_data["tasks"]
mapping = {}
for task in tasks:
task_id = task["id"]
if "storage_filename" in task:
task_raw_path = task["storage_filename"]
else:
task_raw_path = task["data"]["audio"]
if not task_raw_path:
continue
task_stem = task_raw_path.split("/")[-1]
mapping[task_stem] = task_id
return mapping
get_project_id_from_name("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}
ID: 71
import json
def convert_json(filename):
with open(filename) as inf:
data = json.load(inf)
outputs = []
for segment in data["segments"]:
start = segment["start"]
end = segment["end"]
text = segment["text"]
segment = {
"value": {
"start": start,
"end": end,
"channel": 0,
"labels": ["Speech"]
},
"from_name": "labels",
"to_name": "audio",
"type": "labels",
}
rec = {
"value": {
"start": start,
"end": end,
"channel": 0,
"text": [text.strip()]
},
"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_209_002_main.json"
data = convert_json(file)
r = post_results(192, 97, 7, data)
print(r.text)
{"id":192,"result":[{"value":{"start":9.201,"end":9.461,"channel":0,"text":["Yeah?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":10.222,"end":10.682,"channel":0,"text":["I'm glad."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":10.702,"end":14.564,"channel":0,"text":["Let me get this straight."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":16.565,"end":18.566,"channel":0,"text":["I have a lot of units."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":19.026,"end":25.229,"channel":0,"text":["Are you touring this or are you checking out and I'm going through everything?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":30.106,"end":30.747,"channel":0,"text":["Okay, okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":31.528,"end":33.871,"channel":0,"text":["Yeah, let me just check my, okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":34.733,"end":38.137,"channel":0,"text":["So I know, okay, so now I've remembered where everything should be, yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":38.678,"end":41.883,"channel":0,"text":["So I see you've kept Daisy alive here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":41.903,"end":44.286,"channel":0,"text":["Yeah, there's no flowers."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":44.646,"end":45.588,"channel":0,"text":["What happened to the flowers?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":50.151,"end":50.511,"channel":0,"text":["Yeah?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":51.612,"end":52.912,"channel":0,"text":["Okay, well, she looks healthy enough."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":52.992,"end":54.573,"channel":0,"text":["Okay, you get a pass for that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":56.534,"end":61.097,"channel":0,"text":["I see you've put my watering can just on the floor, right?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":61.197,"end":62.898,"channel":0,"text":["I mean, there's condensation on that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":62.938,"end":65.799,"channel":0,"text":["You're going to get some water damage on it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":65.839,"end":69.241,"channel":0,"text":["This is cedar right here, this floor."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":69.381,"end":70.561,"channel":0,"text":["So, I mean, I don't know."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":70.582,"end":72.623,"channel":0,"text":["I'm not made of money, right?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":72.683,"end":74.443,"channel":0,"text":["So that's going to come out of your deposit."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":75.284,"end":76.384,"channel":0,"text":["Next thing, let's see."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":76.404,"end":79.026,"channel":0,"text":["They used to..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":82.36,"end":83.381,"channel":0,"text":["There used to be a table."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":83.421,"end":84.141,"channel":0,"text":["Where's the table?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":87.383,"end":91.205,"channel":0,"text":["No, no, there's a circular table right here, right here in this alcove here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":92.846,"end":93.446,"channel":0,"text":["In the kitchen?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":93.466,"end":94.807,"channel":0,"text":["Ah, we can check that later."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":94.867,"end":95.507,"channel":0,"text":["Okay, okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":95.648,"end":96.168,"channel":0,"text":["I'll believe you."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":96.188,"end":96.588,"channel":0,"text":["I'll believe you."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":96.628,"end":97.008,"channel":0,"text":["Let's see."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":97.609,"end":98.409,"channel":0,"text":["What do we have here?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":98.429,"end":100.891,"channel":0,"text":["Oh, let's see."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":101.711,"end":102.311,"channel":0,"text":["One pillow?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":102.331,"end":103.392,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":104.192,"end":104.533,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":104.553,"end":106.614,"channel":0,"text":["Are these your keys here?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":113.103,"end":113.843,"channel":0,"text":["These are my keys."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":115.244,"end":115.625,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":115.905,"end":116.685,"channel":0,"text":["What's the second key?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":118.566,"end":119.026,"channel":0,"text":["Garage."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":119.067,"end":119.767,"channel":0,"text":["Yes, of course."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":120.207,"end":121.448,"channel":0,"text":["The apartment that comes with the garage."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":121.468,"end":122.088,"channel":0,"text":["That makes sense."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":122.889,"end":123.369,"channel":0,"text":["Let's see."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":125.53,"end":125.991,"channel":0,"text":["Elected."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":127.051,"end":127.391,"channel":0,"text":["Let's see."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":127.411,"end":127.892,"channel":0,"text":["Who's been elected?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":128.992,"end":132.955,"channel":0,"text":["Neural network equipment machine elected president."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":132.995,"end":133.375,"channel":0,"text":["Geez."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":133.795,"end":135.556,"channel":0,"text":["Man, crazy times we're living in, huh?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":135.916,"end":136.757,"channel":0,"text":["You read these headlines?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":138.447,"end":161.416,"channel":0,"text":["that's nuts well okay artwork check check oh there was a there was a third one right there see because because it doesn't make it's it's see this it's not symmetric anymore right there's only two and then there's a big empty space there these two see there's these two right here right but there's supposed to be a third one see that little empty space behind the computer"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":167.697,"end":168.157,"channel":0,"text":["That one?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":168.237,"end":168.958,"channel":0,"text":["No, no, no, no."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":169.038,"end":170.058,"channel":0,"text":["It was a Picasso."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":170.138,"end":171.559,"channel":0,"text":["I remember very distinctly."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":171.579,"end":177.962,"channel":0,"text":["Yeah, so it's going to cost a little bit more than most deposits."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":178.022,"end":179.983,"channel":0,"text":["Let's see what else you're out."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":181.523,"end":182.904,"channel":0,"text":["The grandfather clock, I see."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":182.924,"end":184.465,"channel":0,"text":["You still have it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":184.505,"end":185.765,"channel":0,"text":["It's on the desk there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":185.785,"end":188.587,"channel":0,"text":["It's a little bit small, but you know."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":189.567,"end":191.148,"channel":0,"text":["It's still growing."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":191.428,"end":193.889,"channel":0,"text":["It's a nephew clock right now."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":195.37,"end":195.79,"channel":0,"text":["Let's see."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":195.83,"end":196.811,"channel":0,"text":["Computer, check."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":197.171,"end":199.912,"channel":0,"text":["There's no keyboard."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":199.932,"end":204.735,"channel":0,"text":["You know what I'm saying?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":210.238,"end":210.618,"channel":0,"text":["Oh, I see."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":210.658,"end":210.858,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":212.805,"end":214.186,"channel":0,"text":["Okay, okay, that's good, that's good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":214.266,"end":216.047,"channel":0,"text":["Okay, so that's off the list."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":216.127,"end":220.61,"channel":0,"text":["So far you're only down one Picasso and some water damage."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":220.73,"end":222.992,"channel":0,"text":["Okay, we're going well so far."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":223.832,"end":225.013,"channel":0,"text":["TV, how's it working?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":225.033,"end":227.395,"channel":0,"text":["I don't want to walk over and check because I'm too lazy."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":227.415,"end":235.4,"channel":0,"text":["It's been saying that, you know, the images will get dusty if you don't turn it on."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":238.34,"end":239.661,"channel":0,"text":["Okay, okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":240.301,"end":240.901,"channel":0,"text":["Okay, that's good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":241.742,"end":246.264,"channel":0,"text":["Because they charge you if you don't use the television, because we're in America, obviously."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":248.365,"end":248.846,"channel":0,"text":["Let's see."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":249.326,"end":252.468,"channel":0,"text":["Why is the recycling over there?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":252.788,"end":255.949,"channel":0,"text":["I mean, the trash can... Why is it in the corner?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":255.969,"end":261.412,"channel":0,"text":["Does it make any sense?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":261.792,"end":262.273,"channel":0,"text":["Oh, yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":262.313,"end":262.873,"channel":0,"text":["Can you give me one?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":262.893,"end":263.874,"channel":0,"text":["Can you give me a three-pointer?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":263.894,"end":266.455,"channel":0,"text":["Oh, I see."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":268.513,"end":268.733,"channel":0,"text":["I see."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":268.793,"end":270.994,"channel":0,"text":["Okay, so like over the back."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":271.074,"end":271.834,"channel":0,"text":["That makes sense."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":272.654,"end":274.255,"channel":0,"text":["Do you do basketball or something?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":274.715,"end":276.055,"channel":0,"text":["You look pretty fit, you know."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":276.275,"end":280.397,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":281.197,"end":281.957,"channel":0,"text":["Very impressive."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":281.997,"end":282.617,"channel":0,"text":["Very impressive."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":283.217,"end":286.278,"channel":0,"text":["I'm glad I ran out to a very exclusive clientele."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":290.48,"end":292.32,"channel":0,"text":["Let's see what else we got here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":292.84,"end":293.3,"channel":0,"text":["Statues."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":293.581,"end":296.141,"channel":0,"text":["That one statue, it's been moved onto a little stool there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":296.181,"end":296.662,"channel":0,"text":["You see that?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":297.282,"end":297.982,"channel":0,"text":["See that right there?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":300.33,"end":300.61,"channel":0,"text":["Is it?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":309.115,"end":309.895,"channel":0,"text":["If you say so."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":310.156,"end":311.556,"channel":0,"text":["I mean, I was just curious."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":312.197,"end":313.698,"channel":0,"text":["Just curious."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":313.798,"end":315.719,"channel":0,"text":["It's there, so I'm not going to give a big fuss."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":315.739,"end":317.54,"channel":0,"text":["The next tenant can move it whenever they want."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":317.56,"end":318.58,"channel":0,"text":["Let's see."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":318.62,"end":319.841,"channel":0,"text":["There's three vases."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":320.461,"end":322.642,"channel":0,"text":["Yeah, they look very clean, actually."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":322.663,"end":323.403,"channel":0,"text":["I'm surprised."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":323.463,"end":325.724,"channel":0,"text":["I mean, did you just clean those?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":326.925,"end":326.985,"channel":0,"text":["Oh."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":332.004,"end":332.404,"channel":0,"text":["Yeah, yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":332.444,"end":336.605,"channel":0,"text":["Because those vases, they're not regular vases."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":336.645,"end":338.026,"channel":0,"text":["They're soul jars, right?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":338.826,"end":346.868,"channel":0,"text":["So some tenants, when they move out and the deposit can't cover everything, I steal their souls and put them in the jar."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":347.328,"end":347.488,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":347.508,"end":347.608,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":350.869,"end":351.81,"channel":0,"text":["That blue one, see?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":351.83,"end":354.471,"channel":0,"text":["Because the other two, they're clear."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":354.491,"end":356.772,"channel":0,"text":["That means that they've basically given up."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":357.233,"end":358.793,"channel":0,"text":["But that blue one, he's still fighting."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":359.374,"end":363.616,"channel":0,"text":["But in a few months, it'll be clear like the rest of them because he'll have given up on trying to get out."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":365.606,"end":365.826,"channel":0,"text":["No."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":366.266,"end":368.947,"channel":0,"text":["But in his mind, he's still in the room, actually, right?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":369.287,"end":376.168,"channel":0,"text":["He still thinks he's here and that his friend's going to come over and he's going to show him, but he's stuck here forever."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":377.368,"end":377.689,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":378.289,"end":379.409,"channel":0,"text":["It's pretty nuts."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":380.669,"end":381.029,"channel":0,"text":["Let's see."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":381.049,"end":381.729,"channel":0,"text":["The hands there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":381.869,"end":382.49,"channel":0,"text":["Yeah, of course."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":382.59,"end":383.59,"channel":0,"text":["Always have to have the hand."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":383.75,"end":384.21,"channel":0,"text":["Makes sense."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":385.07,"end":385.43,"channel":0,"text":["Lamp."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":385.61,"end":385.93,"channel":0,"text":["Yep."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":386.43,"end":387.931,"channel":0,"text":["Bing, bada, boom, bada, bing."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":389.451,"end":389.511,"channel":0,"text":["Rug."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":389.611,"end":391.071,"channel":0,"text":["Rug, rug, rug, rug, rug."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":395.292,"end":396.593,"channel":0,"text":["Let's see."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":397.974,"end":399.054,"channel":0,"text":["Yeah, it's clean."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":399.074,"end":401.015,"channel":0,"text":["It's clean."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":402.576,"end":403.196,"channel":0,"text":["One thing, though."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":403.316,"end":407.798,"channel":0,"text":["That box, the cardboard box, you've just... What is that?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":407.938,"end":408.758,"channel":0,"text":["What's that from?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":408.778,"end":411.939,"channel":0,"text":["Yeah, it looks pretty empty."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":411.959,"end":414.841,"channel":0,"text":["Oh, I see."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":415.001,"end":415.981,"channel":0,"text":["Light Traveler and all."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":416.161,"end":416.661,"channel":0,"text":["Makes sense."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":416.741,"end":417.582,"channel":0,"text":["Okay, okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":418.062,"end":419.763,"channel":0,"text":["Well, it looks like you've all, you know..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":421.487,"end":422.708,"channel":0,"text":["You've done a good job cleaning up."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":422.868,"end":423.208,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":423.789,"end":426.99,"channel":0,"text":["I'll build the card."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":427.311,"end":430.973,"channel":0,"text":["Actually, I'll build that card right there so that your correct card on the table."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":430.993,"end":431.693,"channel":0,"text":["I'll just take that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":431.793,"end":432.894,"channel":0,"text":["I'll just take that when you go."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":432.914,"end":434.015,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":436.916,"end":437.257,"channel":0,"text":["Awesome."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":437.277,"end":437.457,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":437.577,"end":437.957,"channel":0,"text":["Thumbs up."]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":"Whisper large-v2@whisper.fake, 2","created_ago":"3 weeks, 1 day","completed_by":2,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-22T14:56:08.149671Z","updated_at":"2024-10-15T08:35:15.969092Z","draft_created_at":null,"lead_time":1.194,"import_id":null,"last_action":null,"task":97,"project":7,"updated_by":2,"parent_prediction":null,"parent_annotation":null,"last_created_by":null}
count = 202
for task in mapping:
jsonfile = task.replace(".wav", ".json")
file = f"{input_dir}{jsonfile}"
data = convert_json(file)
r = post_results(count, mapping[task], 8, data)
count += 1
print(r.text)
{"id":202,"result":[{"value":{"start":17.665,"end":19.806,"channel":0,"text":["Okay, so hi, welcome."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":21.907,"end":22.948,"channel":0,"text":["Yeah, thank you very much."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":23.488,"end":31.192,"channel":0,"text":["I really put a lot of effort to, you know, decorate it and put all the tiny details that I like on my space."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":31.212,"end":37.276,"channel":0,"text":["You know, it's really important for me, all the details that I put in each thing."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":37.436,"end":44.86,"channel":0,"text":["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":50.222,"end":73.728,"channel":0,"text":["Yeah, 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 detail here in the middle and also in the base and then the base in the middle it's also the same shade of blue so I really like that and I think the other ones give a little bit of cohesion with the rest of the room."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":74.148,"end":80.798,"channel":0,"text":["So, for example, with the couches and the grey and, you know, everything is a little bit balanced, let's say."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":85.686,"end":88.41,"channel":0,"text":["You mean the brown one or the black one?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":91.539,"end":98.281,"channel":0,"text":["Okay, yeah, that is a really, really nice sculpture that a friend of mine gifted me on a trip to Africa."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":98.921,"end":110.643,"channel":0,"text":["So she found it on a fair and she told me that it was really, really nice and that the person who made them was an old man who was carving them by hand."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":110.943,"end":113.284,"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.502,"end":124.026,"channel":0,"text":["Yeah, and the other one is one that I personally like, because it's from an artist that I really enjoy."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":124.926,"end":128.428,"channel":0,"text":["He's not so really renowned, but I really like his work."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":129.048,"end":132.449,"channel":0,"text":["And it's marble, so it's card marble."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":133.07,"end":136.831,"channel":0,"text":["And I really like the details, like the way it's lifting the hand."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":136.971,"end":138.112,"channel":0,"text":["I really like that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":138.652,"end":140.113,"channel":0,"text":["It's a message of hope."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":143.976,"end":158.831,"channel":0,"text":["Yeah, I mean I had an issue there because the problem is that my previous one, I mean a friend of mine came and brought 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":159.251,"end":165.738,"channel":0,"text":["But yeah, this one is not at all according to my styles, but you know, it is what it is."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":169.898,"end":174.543,"channel":0,"text":["Yeah, that one is 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.863,"end":177.406,"channel":0,"text":["So I would only use it whenever I'm working."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":177.586,"end":179.648,"channel":0,"text":["So I use the desk and it's for paper."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":179.988,"end":185.654,"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":190.106,"end":196.43,"channel":0,"text":["I mean, the thing is that I wanted to put it more here, but I really like this space because sometimes I do stretching or yoga."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":196.75,"end":204.335,"channel":0,"text":["So basically, this space was more thought for that, like in the sense of actually using it like having a more wide space."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":204.715,"end":210.599,"channel":0,"text":["Also, sometimes my nephews come and so we can play a little bit and you know, this kind of things."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":210.699,"end":211.339,"channel":0,"text":["It's cool."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":211.379,"end":215.602,"channel":0,"text":["We can put a blanket or, you know, a carpet and just they can play here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":222.506,"end":225.592,"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":226.053,"end":230.723,"channel":0,"text":["So I could actually put the desk facing the picture."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":231.765,"end":232.567,"channel":0,"text":["And that would be nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":236.098,"end":239.0,"channel":0,"text":["Yeah, they are really, really expensive paints."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":239.521,"end":247.807,"channel":0,"text":["I mean, not that I'm bragging, but you know, it was, it's super, super exquisite art that I have here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":248.267,"end":251.21,"channel":0,"text":["I mean, all of them, they are from different painters."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":251.65,"end":259.136,"channel":0,"text":["But though my favorite one is this one, because it's a really, really nice landscape that I really appreciate."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":259.876,"end":264.96,"channel":0,"text":["This landscape is from from Norway."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":265.959,"end":267.76,"channel":0,"text":["Yeah, so it's really, really nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":267.82,"end":268.62,"channel":0,"text":["I really like it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":268.72,"end":276.404,"channel":0,"text":["And the way that light goes on top of the stones is really nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":276.764,"end":279.686,"channel":0,"text":["I really like to enjoy looking at it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":280.791,"end":282.492,"channel":0,"text":["Yes, it's really nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":282.833,"end":285.775,"channel":0,"text":["The rest, I mean, they are from other artists."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":285.975,"end":294.482,"channel":0,"text":["In this one, what I really appreciate is the shades, because I mean, all the animals, the details, and you can actually see the strokes on each painting."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":294.522,"end":295.403,"channel":0,"text":["So it's really nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":295.903,"end":299.366,"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.786,"end":301.868,"channel":0,"text":["And I really appreciate that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":302.288,"end":311.311,"channel":0,"text":["And from that one, I think it's more of what you can see in the details, because as you can see, all the things on the roof are the interesting thing."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":311.711,"end":317.392,"channel":0,"text":["And you might not have this in a lot of paintings, because normally you would see the floor."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":317.733,"end":322.494,"channel":0,"text":["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":326.184,"end":326.844,"channel":0,"text":["Yeah, that's true."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":327.024,"end":327.364,"channel":0,"text":["That's true."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":327.464,"end":328.645,"channel":0,"text":["You're totally right."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":330.065,"end":330.306,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":331.506,"end":336.028,"channel":0,"text":["Maybe I should move it to the bedroom and then bring the other one in the bedroom is blue."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":336.448,"end":339.049,"channel":0,"text":["So I think it would make a little bit more of contrast."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":342.45,"end":342.59,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":343.853,"end":357.279,"channel":0,"text":["Yeah, actually actually it is it makes a really nice 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."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":357.379,"end":372.286,"channel":0,"text":["It's really nice I think it makes a focal area 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 and"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":377.19,"end":384.512,"channel":0,"text":["I mean, sometimes I do combine them because I work a lot with computational analysis."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":384.872,"end":389.193,"channel":0,"text":["So then I pair them up and I just use them for having more computational power."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":389.693,"end":390.334,"channel":0,"text":["So yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":390.694,"end":398.136,"channel":0,"text":["And of course, sometimes I go on a trip and then I need just to take my laptop and then not the PC one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":398.476,"end":402.337,"channel":0,"text":["So, you know, it's a little bit more of a versatility thing."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":405.45,"end":409.234,"channel":0,"text":["No, it's 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.614,"end":411.736,"channel":0,"text":["So, but it was just because of that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":411.796,"end":413.537,"channel":0,"text":["No, no, I don't store it here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":413.597,"end":415.539,"channel":0,"text":["I normally would put it on the desk."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":420.744,"end":421.644,"channel":0,"text":["Okay, thank you very much."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":427.269,"end":427.43,"channel":0,"text":["Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":"Whisper large-v2@whisper.fake, 2","created_ago":"1 minute","completed_by":2,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-22T14:59:39.556280Z","updated_at":"2024-09-22T15:00:52.964344Z","draft_created_at":null,"lead_time":3.772,"import_id":null,"last_action":null,"task":107,"project":8,"updated_by":1,"parent_prediction":null,"parent_annotation":null,"last_created_by":null} {"id":203,"result":[{"value":{"start":0.009,"end":1.47,"channel":0,"text":["a little bit towards the left."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":4.692,"end":5.413,"channel":0,"text":["Yeah, yeah, okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":10.597,"end":13.038,"channel":0,"text":["You need me to point at things more or?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":14.9,"end":15.12,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":17.902,"end":18.222,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":24.247,"end":27.129,"channel":0,"text":["Yeah, okay, I hope you had taken care of the things."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":27.591,"end":30.973,"channel":0,"text":["really thoroughly, so you actually performed the cleaning."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":31.813,"end":32.653,"channel":0,"text":["Okay, that's great."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":33.614,"end":40.857,"channel":0,"text":["But you know, I am just, but there is a stain on the pillow."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":42.458,"end":45.279,"channel":0,"text":["But I mean, that's not supposed to be like that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":45.319,"end":46.82,"channel":0,"text":["Yeah, I can actually see it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":48.181,"end":48.981,"channel":0,"text":["I mean, did you?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":50.982,"end":52.082,"channel":0,"text":["Aha, okay, okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":52.243,"end":53.203,"channel":0,"text":["Yeah, that's good, that's good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":54.243,"end":55.184,"channel":0,"text":["What happened here?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":57.694,"end":59.735,"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.198,"end":69.381,"channel":0,"text":["Yeah, yeah, let's check that because, because, yeah, I don't think that was there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":75.505,"end":76.585,"channel":0,"text":["What happened with the statue?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":77.946,"end":82.729,"channel":0,"text":["The black one, because it was doing this with the finger and it had a finger."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":85.411,"end":85.731,"channel":0,"text":["It had."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":87.546,"end":88.186,"channel":0,"text":["It doesn't, no."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":90.388,"end":91.969,"channel":0,"text":["I mean, aren't you seeing it?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":95.891,"end":96.712,"channel":0,"text":["Yeah, yeah, 100%."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":97.072,"end":99.354,"channel":0,"text":["Because, yeah, really, it had a finger pointing."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":100.054,"end":100.675,"channel":0,"text":["Yes, yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":103.997,"end":109.46,"channel":0,"text":["I think, yeah, you have a lot of things from yours here, right?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":109.48,"end":113.103,"channel":0,"text":["Because, I mean, that trash bin was not from the apartment, the blue one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":115.004,"end":115.244,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":117.0,"end":117.3,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":117.5,"end":117.68,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":117.72,"end":117.84,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":117.86,"end":122.562,"channel":0,"text":["Because 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.523,"end":123.783,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":125.084,"end":125.344,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":125.384,"end":125.604,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":125.644,"end":125.844,"channel":0,"text":["Good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":126.264,"end":128.785,"channel":0,"text":["So, uh, and that's also your computer, I guess."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":130.166,"end":130.366,"channel":0,"text":["Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":131.666,"end":131.907,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":133.227,"end":133.487,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":134.388,"end":135.968,"channel":0,"text":["And have you, have you changed the table?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":138.209,"end":139.65,"channel":0,"text":["The, the, the center table here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":144.313,"end":145.074,"channel":0,"text":["Yeah, it could be."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":145.814,"end":147.354,"channel":0,"text":["Yeah, well."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":148.755,"end":154.977,"channel":0,"text":["Yeah, the problem is that, you know, whenever the weight is on, then it leaves a mark on the carpet."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":156.457,"end":157.197,"channel":0,"text":["That doesn't look good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":161.098,"end":163.439,"channel":0,"text":["So, did you move the lamp to clean?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":163.459,"end":169.561,"channel":0,"text":["Because I can see some dust in the back."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":174.139,"end":177.28,"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.68,"end":178.98,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":181.141,"end":183.322,"channel":0,"text":["I mean, this this furniture looks great."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":183.382,"end":185.282,"channel":0,"text":["I think you took good care of it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":185.942,"end":187.803,"channel":0,"text":["Is the TV working right?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":189.063,"end":189.723,"channel":0,"text":["Okay, great."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":193.484,"end":193.905,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":194.385,"end":195.605,"channel":0,"text":["Did you misplace this?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":197.265,"end":202.787,"channel":0,"text":["The container the vase for the the plants for watering the plants?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":206.149,"end":215.437,"channel":0,"text":["Yeah, if you could just actually put it back to where it was, because I think it's important for the next one, so I can keep track of the changes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":218.419,"end":220.261,"channel":0,"text":["By the fireplace, as it was."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":221.761,"end":226.102,"channel":0,"text":["Yeah, I think the windows are a little bit dirty."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":227.202,"end":230.623,"channel":0,"text":["I mean, did you clean from inside and outside or just inside?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":231.844,"end":239.006,"channel":0,"text":["Yeah, yeah, I think you need 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.826,"end":241.546,"channel":0,"text":["Yeah, it's not good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":243.747,"end":244.947,"channel":0,"text":["And what else?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":247.188,"end":247.488,"channel":0,"text":["Hmm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":251.537,"end":253.499,"channel":0,"text":["What happened there on the door?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":255.141,"end":258.584,"channel":0,"text":["It's like a mark."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":260.486,"end":262.127,"channel":0,"text":["Yeah, I can actually see a mark."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":270.575,"end":273.438,"channel":0,"text":["I mean, it looks like a stain, I don't know."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":275.259,"end":275.979,"channel":0,"text":["Oh, okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":277.04,"end":278.721,"channel":0,"text":["Nice, nice, you took care of the plant."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":279.021,"end":279.942,"channel":0,"text":["That is really nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":280.802,"end":283.484,"channel":0,"text":["It looks nice and taken care of."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":288.527,"end":296.211,"channel":0,"text":["But so the hand here, the sculpture, it has a scratch on the palm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":301.849,"end":303.211,"channel":0,"text":["I am not so sure about that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":303.332,"end":305.215,"channel":0,"text":["I think it was not there before."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":308.901,"end":314.55,"channel":0,"text":["Yeah, we should check it on the pictures because really it's not... I don't think it was there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":319.58,"end":320.561,"channel":0,"text":["Yeah, please, please."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":321.182,"end":325.566,"channel":0,"text":["So so move it because yeah, and also the the newspaper there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":325.986,"end":331.652,"channel":0,"text":["I mean, try to move all your stuff, because otherwise, it's not good for the rest."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":332.893,"end":333.213,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":334.855,"end":335.636,"channel":0,"text":["So what else?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":344.91,"end":347.751,"channel":0,"text":["Yeah, I was actually going to comment about that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":348.091,"end":351.072,"channel":0,"text":["But I can actually, I mean, did you clean them?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":353.253,"end":354.513,"channel":0,"text":["OK."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":354.573,"end":355.773,"channel":0,"text":["I can see a little bit of dust."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":355.893,"end":361.455,"channel":0,"text":["Maybe you can just put a little bit, clean it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":361.495,"end":370.318,"channel":0,"text":["Because, yeah, on the upper part, especially, you can see an actual layer of dust that doesn't"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":371.914,"end":372.675,"channel":0,"text":["No, of course, of course."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":372.895,"end":379.739,"channel":0,"text":["But 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":380.379,"end":381.74,"channel":0,"text":["And then it's not good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":381.98,"end":393.207,"channel":0,"text":["So if you could actually, not wet cloth, but normal dry cloth, and then you put it over and like towards all the sides, and I think that is good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":393.567,"end":394.348,"channel":0,"text":["That is gonna look good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":396.994,"end":398.075,"channel":0,"text":["especially in the frame ones."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":398.495,"end":415.146,"channel":0,"text":["The ones that don't have a frame like those, those ones are not that problematic, but these ones that have a frame, you don't have to take that much care in terms of 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.586,"end":421.01,"channel":0,"text":["The ones that you need to take more care about are those ones, because they don't have a frame."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":431.44,"end":436.813,"channel":0,"text":["Yeah sure, and let's check 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":436.833,"end":439.499,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":"Whisper large-v2@whisper.fake, 2","created_ago":"1 minute","completed_by":2,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-22T14:59:42.455912Z","updated_at":"2024-09-22T15:00:53.083686Z","draft_created_at":null,"lead_time":1.346,"import_id":null,"last_action":null,"task":108,"project":8,"updated_by":1,"parent_prediction":null,"parent_annotation":null,"last_created_by":null} {"id":204,"result":[{"value":{"start":7.159,"end":7.92,"channel":0,"text":["Yeah, you look normal."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":13.884,"end":14.124,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":15.005,"end":15.965,"channel":0,"text":["So hi, how are you?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":16.125,"end":18.867,"channel":0,"text":["I think you made a good choice purchasing this one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":19.548,"end":20.809,"channel":0,"text":["It has a lot of potential."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":22.47,"end":22.77,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":25.786,"end":26.807,"channel":0,"text":["Yeah, yeah, of course."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":26.867,"end":32.069,"channel":0,"text":["I mean, 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.529,"end":39.091,"channel":0,"text":["I would go for something more neutral, like white or a really light gray."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":40.292,"end":41.052,"channel":0,"text":["Yeah, the walls."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":41.872,"end":45.974,"channel":0,"text":["Because really, I don't think this color really matches."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":47.295,"end":58.083,"channel":0,"text":["I mean it matches but the the problem is that it might be too much if you want something more like 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.403,"end":64.048,"channel":0,"text":["Maybe you don't want so much information Incoming same with the with the pictures."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":64.548,"end":68.932,"channel":0,"text":["Maybe you just should keep one or two because more than that is a"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":76.246,"end":76.826,"channel":0,"text":["Yeah, of course."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":78.207,"end":83.631,"channel":0,"text":["I mean, I think in this case, you should decide because so the flooring is gray."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":84.072,"end":94.199,"channel":0,"text":["So I don't know if the furniture should be gray, same as the floor, or you want to keep this this color because."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":96.04,"end":96.14,"channel":0,"text":["Hmm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":97.814,"end":100.576,"channel":0,"text":["No, the tables, the table and the furniture there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":101.377,"end":109.062,"channel":0,"text":["Yeah, because I can see that they are from the same color, a little bit brown, but like really saturated brown."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":109.383,"end":116.528,"channel":0,"text":["So in that case, maybe I would go for something lighter if you want more space to take some rest."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":117.328,"end":140.947,"channel":0,"text":["With the with the sofas I would just put them in a different 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 the sofa that would be nice and"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":141.627,"end":155.599,"channel":0,"text":["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 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.745,"end":164.129,"channel":0,"text":["I think that table is, I mean, for that placement, it's really big."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":164.65,"end":172.798,"channel":0,"text":["So you need to go for something more minimalist in terms of maybe two small ones, like a little bit short in height."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":175.129,"end":177.29,"channel":0,"text":["Ah, you mean the desk for the, yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":177.791,"end":185.475,"channel":0,"text":["I mean, that desk is a little bit confusing in position, 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":200.743,"channel":0,"text":["Because maybe the TV will look really nice on top 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."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":200.803,"end":201.804,"channel":0,"text":["I think that would be nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":203.105,"end":203.685,"channel":0,"text":["That might work."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":207.29,"end":217.136,"channel":0,"text":["Your laptop, I mean, if you're actually working in the couch, then maybe you can get one of those tables that you can flip and take back."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":217.556,"end":225.061,"channel":0,"text":["Like, you lift them, and then you put them closer to the couch, and then you can work there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":225.501,"end":228.523,"channel":0,"text":["But definitely, I would go for a lower height one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":236.468,"end":254.36,"channel":0,"text":["Yeah, I wouldn't put the laptop close by to the statues because in that case you would be moving the laptop or just working there and then you're really close to the statues and then maybe some accident happens and then you break some of the statues."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":254.38,"end":255.561,"channel":0,"text":["So I wouldn't do that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":256.321,"end":265.828,"channel":0,"text":["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 place to actually take a look."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":266.508,"end":268.79,"channel":0,"text":["But yeah, I don't know."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":269.15,"end":271.271,"channel":0,"text":["I don't think I would put the laptop there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":271.632,"end":273.493,"channel":0,"text":["Maybe you can put it on the desk as well."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":279.037,"end":279.237,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":281.169,"end":284.39,"channel":0,"text":["I think the black one would be the best choice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":285.69,"end":293.212,"channel":0,"text":["Yeah, the brown one, it looks a little bit flat in this furniture, because it's the same color of the furniture."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":293.652,"end":300.534,"channel":0,"text":["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.71,"end":309.232,"channel":0,"text":["Yeah, I think maybe you should just keep one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":309.852,"end":312.653,"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.314,"end":317.276,"channel":0,"text":["So maybe if you just keep one of them, I would go definitely for that one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":319.037,"end":319.758,"channel":0,"text":["The gray one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":320.978,"end":327.022,"channel":0,"text":["Because really, it's not... I mean, it matches better with the whole room."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":327.762,"end":330.504,"channel":0,"text":["This one, it looks like trash can from the street."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":331.625,"end":334.007,"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.447,"end":343.513,"channel":0,"text":["So, I mean, I would keep that inside a drawer or inside a cardboard, something like that, hidden, like not to be visible for the people."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":344.894,"end":345.295,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":349.538,"end":349.878,"channel":0,"text":["Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":350.919,"end":351.379,"channel":0,"text":["Yeah, yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":351.559,"end":354.041,"channel":0,"text":["I think, yeah, you should keep a maximum of two."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":355.72,"end":363.183,"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 the place of the TV."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":363.563,"end":365.024,"channel":0,"text":["And then this one, I think it's perfect."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":365.104,"end":367.265,"channel":0,"text":["Even the color pick is really nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":367.585,"end":378.41,"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 to keep and just put it there, even because it goes with the"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":379.13,"end":399.946,"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 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 fireplace yep"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":406.298,"end":426.758,"channel":0,"text":["Yes, yes, you definitely purchase one of those small arrangements for the next of for the side of the so where you put place your arm and then you can just put put it there even with the control the Control of the TV the remote control so you can put everything there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":426.998,"end":427.619,"channel":0,"text":["I think that would be"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":429.608,"end":434.511,"channel":0,"text":["Yeah, I think you can buy one of those places where you can keep it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":435.152,"end":442.697,"channel":0,"text":["Like they come in different 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.639,"end":446.8,"channel":0,"text":["Okay, you're welcome."]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":"Whisper large-v2@whisper.fake, 2","created_ago":"1 minute","completed_by":2,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-22T14:59:45.359996Z","updated_at":"2024-09-22T15:00:53.204912Z","draft_created_at":null,"lead_time":1.509,"import_id":null,"last_action":null,"task":109,"project":8,"updated_by":1,"parent_prediction":null,"parent_annotation":null,"last_created_by":null} {"id":205,"result":[{"value":{"start":19.869,"end":23.154,"channel":0,"text":["Okay, yep, you're not in the middle of anything."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":29.324,"end":38.469,"channel":0,"text":["Yeah, I mean, I have my thoughts about it, because I think I didn't really catch the essence of the place."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":38.909,"end":47.514,"channel":0,"text":["So I was planning to do some changes, but do you have some suggestions that you think that I should change?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":54.574,"end":60.9,"channel":0,"text":["No, of course I am, I am, 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.341,"end":67.047,"channel":0,"text":["So I don't know, I am not fully, but that's mainly the only thing."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":70.09,"end":70.63,"channel":0,"text":["Yeah, that's true."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":70.67,"end":75.255,"channel":0,"text":["I mean, they are the same size and they are a little bit, but I think I should go more for something that style."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":77.078,"end":92.878,"channel":0,"text":["The yeah the tree one like just go or get one on that style on the other side I think the they are not matching styles and that 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.359,"end":101.43,"channel":0,"text":["It's a little bit hassle to water them, but now I purchased a system that it does it by itself."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":101.79,"end":102.511,"channel":0,"text":["So it's great."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":102.752,"end":107.198,"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":109.461,"end":109.721,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":116.261,"end":120.403,"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.943,"end":122.424,"channel":0,"text":["But that one is my favorite."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":122.824,"end":126.126,"channel":0,"text":["Like, I really, yeah, and on the small table."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":127.427,"end":129.008,"channel":0,"text":["Yeah, I really like that one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":129.068,"end":130.308,"channel":0,"text":["It's, it's really nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":130.789,"end":139.953,"channel":0,"text":["I think I should purchase a nicer vase for that, like, nicer pot, because it's growing and I think I need to replant it soon."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":140.494,"end":145.056,"channel":0,"text":["So but but yes, I think it's, that is the one that I like the most."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":150.436,"end":153.658,"channel":0,"text":["Yeah, but this one is especially designed for that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":153.738,"end":157.139,"channel":0,"text":["So it's a plant that doesn't require that much light."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":157.8,"end":160.301,"channel":0,"text":["So it's good for that purpose."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":160.881,"end":169.185,"channel":0,"text":["So that's why I keep it here, because now in the summer, then a lot of light enters through the windows, and then it's too much for it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":169.425,"end":174.368,"channel":0,"text":["As you can see, the upper part of the leaves is a little bit not good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":175.008,"end":176.969,"channel":0,"text":["It's because I moved it quite recently."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":177.589,"end":184.336,"channel":0,"text":["So basically 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.636,"end":188.5,"channel":0,"text":["It's a little bit of a big plant so that's a little bit complicated to move."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":194.523,"end":200.289,"channel":0,"text":["Yeah, I wanted to give a little bit of a pop-up color to both of them."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":200.649,"end":205.053,"channel":0,"text":["So, you know, just to cheer up the room."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":205.574,"end":207.035,"channel":0,"text":["So that was my whole plan."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":207.896,"end":208.276,"channel":0,"text":["So, yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":213.361,"end":215.383,"channel":0,"text":["From the walls, you mean, or the pillow?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":217.515,"end":225.239,"channel":0,"text":["Aha, yeah, but it's just, you know, to do while you watch TV or something and you want to put it like in your knees or like on your head."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":225.319,"end":228.141,"channel":0,"text":["So it's not, I don't eat at all in the couch."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":228.661,"end":233.624,"channel":0,"text":["So I don't think maybe and if I drink, I drink just water, things like that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":233.664,"end":235.385,"channel":0,"text":["So I don't, I don't, I'm not afraid."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":235.645,"end":243.489,"channel":0,"text":["But anyways, they are both 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.539,"end":247.46,"channel":0,"text":["Yeah, yeah, yeah, yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":247.94,"end":249.401,"channel":0,"text":["Yeah, sometimes I work."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":249.762,"end":252.704,"channel":0,"text":["I was just checking some things from work."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":253.244,"end":259.59,"channel":0,"text":["But yeah, normally I have a desk in another room."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":263.393,"end":267.356,"channel":0,"text":["Well, that's a really good observation, actually."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":267.976,"end":268.817,"channel":0,"text":["Yeah, it has been there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":268.857,"end":275.102,"channel":0,"text":["I mean, yeah, I should maybe purchase an auxiliary table for the laptop."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":278.368,"end":286.333,"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.773,"end":289.955,"channel":0,"text":["And second of all, it's a little bit too low for me."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":290.296,"end":293.177,"channel":0,"text":["So I was thinking of getting something a little bit higher."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":295.299,"end":295.559,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":298.76,"end":300.422,"channel":0,"text":["Yeah, I really enjoy reading."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":300.683,"end":305.71,"channel":0,"text":["So I said, Okay, I deserve my space to actually do this."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":306.07,"end":313.721,"channel":0,"text":["So that's why I have this with the little lamp and you know, in the night, I just turn everything off and just keep the lamp and it's really cozy."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":315.684,"end":315.904,"channel":0,"text":["Sorry."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":317.757,"end":318.117,"channel":0,"text":["this one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":318.717,"end":322.159,"channel":0,"text":["Yeah, it's because otherwise this area was a little bit dark."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":323.279,"end":326.94,"channel":0,"text":["But so yeah, as you can see, you have one here, one there, one there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":326.98,"end":331.182,"channel":0,"text":["So it's crossing the room, and it keeps it the whole room illuminated."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":331.462,"end":334.963,"channel":0,"text":["But actually, you can turn them on separately, which is really nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":335.043,"end":337.704,"channel":0,"text":["So you can have different areas illuminated in the room."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":338.104,"end":358.256,"channel":0,"text":["sometimes when I am reading and I feel that I don't have that much light I just turn that on but 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 thank you very much"]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":"Whisper large-v2@whisper.fake, 2","created_ago":"1 minute","completed_by":2,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-22T14:59:48.154092Z","updated_at":"2024-09-22T15:00:53.307338Z","draft_created_at":null,"lead_time":1.125,"import_id":null,"last_action":null,"task":110,"project":8,"updated_by":1,"parent_prediction":null,"parent_annotation":null,"last_created_by":null} {"id":206,"result":[{"value":{"start":6.823,"end":7.724,"channel":0,"text":["Should I go to depot?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":11.507,"end":13.048,"channel":0,"text":["I am watching you, yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":17.211,"end":18.212,"channel":0,"text":["You were standing there, yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":26.784,"end":31.187,"channel":0,"text":["Yeah, I mean, I think you can give it some personal touches."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":31.928,"end":45.397,"channel":0,"text":["I mean, you told me before that you were into this eclectic style, so I think the carpet gives 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.817,"end":50.08,"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.081,"end":56.827,"channel":0,"text":["It's a little bit generic, you can go for something more bold in terms of style."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":57.368,"end":63.094,"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.713,"end":72.037,"channel":0,"text":["Yes, that is a little bit better, you know, towards the look of the room."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":72.217,"end":73.538,"channel":0,"text":["I think that is better."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":74.058,"end":82.364,"channel":0,"text":["But also the couch, I think, yeah, the brown, it's a little bit too plain for this room."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":84.666,"end":96.114,"channel":0,"text":["The black one is better, and I think also if you can put some spots of color 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.509,"end":102.662,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":108.387,"end":114.31,"channel":0,"text":["Yeah, maybe you can have a small table, like a coffee table in the green."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":115.51,"end":117.571,"channel":0,"text":["That I think might look nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":118.872,"end":122.573,"channel":0,"text":["But maybe that green, it's a little bit too saturated."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":122.633,"end":125.274,"channel":0,"text":["Maybe you can go for something more pastel."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":125.694,"end":128.535,"channel":0,"text":["Because these colors here, I mean, you have blue, orange."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":128.695,"end":135.358,"channel":0,"text":["I mean, I am basing everything with the carpet because I think it's a really nice item and you like to keep it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":135.718,"end":163.88,"channel":0,"text":["So maybe orange that would be also another option and maybe you can keep really small Maybe a smaller cushion for in green so you have a little bit more of contrast But I was a little bit worried about this situation here Yes, because that statue there it doesn't look good because maybe you can move this couch a little bit back and then put it in between both couches because it doesn't"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":165.201,"end":166.522,"channel":0,"text":["You are not able to see it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":169.524,"end":172.645,"channel":0,"text":["This armchair, the black one, you move it a little bit back."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":173.926,"end":176.227,"channel":0,"text":["And then you move the table a little bit forward."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":176.828,"end":183.111,"channel":0,"text":["And then you would have an option to actually see the statue, because otherwise you don't see it at all."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":183.832,"end":187.133,"channel":0,"text":["And also the trash can in the back, I wouldn't really put it there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":187.294,"end":189.615,"channel":0,"text":["It doesn't look good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":189.995,"end":190.716,"channel":0,"text":["There is a trash can."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":192.116,"end":196.3,"channel":0,"text":["Yeah, and that doesn't look good, because it's too plastic."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":197.52,"end":210.99,"channel":0,"text":["I would purchase something metallic or things like this, and maybe not put it just there, maybe put it in some other corner of the room, like here, there is nothing, so something more open."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":212.311,"end":214.773,"channel":0,"text":["I think that would go better."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":215.214,"end":220.678,"channel":0,"text":["And even, for example, the statue there, close to the TV, I think it's distracting from the TV."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":225.714,"end":233.036,"channel":0,"text":["Yeah, but I think it would be nice for you to have a space specifically designed for the statues."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":233.317,"end":252.562,"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... Yeah, I think 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, to put the other one, or maybe a shelf."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":253.303,"end":254.723,"channel":0,"text":["That also would be a good idea."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":255.911,"end":263.155,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":269.938,"end":273.6,"channel":0,"text":["I think there are two different situations here, and it's OK."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":274.32,"end":277.982,"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.402,"end":282.624,"channel":0,"text":["I mean, I don't know, you use this space for reading or something like that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":284.308,"end":305.156,"channel":0,"text":["Okay, but then maybe you need a yeah, you need a more comfortable space because I think the area is not that that chair is not Yeah Yeah, it's really inspiring but I would maybe Get something more comfortable reclinable like you can lay it down a little bit Maybe something like that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":305.196,"end":308.177,"channel":0,"text":["Maybe some focal light that comes directly on top of"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":320.695,"end":321.015,"channel":0,"text":["Thank you."]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":"Whisper large-v2@whisper.fake, 2","created_ago":"1 minute","completed_by":2,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-22T14:59:50.687292Z","updated_at":"2024-09-22T15:00:53.406842Z","draft_created_at":null,"lead_time":1.194,"import_id":null,"last_action":null,"task":111,"project":8,"updated_by":1,"parent_prediction":null,"parent_annotation":null,"last_created_by":null} {"id":207,"result":[{"value":{"start":12.492,"end":12.752,"channel":0,"text":["Uh-huh."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":13.993,"end":20.998,"channel":0,"text":["Yes, it has been a long time and you have been a really good tenant as far as I can see, right?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":22.559,"end":23.36,"channel":0,"text":["So that's good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":23.66,"end":29.744,"channel":0,"text":["The carpet seems to be clean, which is good because this carpet is really hard to clean."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":29.965,"end":31.325,"channel":0,"text":["So you did a great job there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":33.767,"end":35.368,"channel":0,"text":["And yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":38.07,"end":40.272,"channel":0,"text":["So did you face any difficulties here?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":43.102,"end":44.803,"channel":0,"text":["Everything went well, okay, great."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":45.923,"end":47.484,"channel":0,"text":["Might it be that you changed the lamp?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":48.985,"end":49.725,"channel":0,"text":["That one there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":52.666,"end":54.467,"channel":0,"text":["It was a different color or you painted it?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":61.29,"end":66.052,"channel":0,"text":["Yes, please, because I don't think this color matches the decoration of the place."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":66.993,"end":69.334,"channel":0,"text":["Yeah, I think it's for the best."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":70.768,"end":74.173,"channel":0,"text":["Yeah, and I see you did a great job with the plants."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":74.413,"end":75.235,"channel":0,"text":["That is really nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":75.595,"end":82.565,"channel":0,"text":["Those ones on the roof, you actually put them by yourself?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":84.027,"end":84.328,"channel":0,"text":["Uh-huh."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":89.506,"end":93.707,"channel":0,"text":["Yeah, 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.508,"channel":0,"text":["Because I mean, you know how to water them and everything."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":98.929,"end":104.29,"channel":0,"text":["But if a new tenant comes, I don't feel that they are gonna know how to deal with this."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":104.33,"end":108.071,"channel":0,"text":["So I think maybe you just remove them and just cover the holes, please."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":110.396,"end":111.377,"channel":0,"text":["Okay, okay, perfect."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":111.857,"end":117.061,"channel":0,"text":["Because, yeah, I don't think they will be really able to do that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":118.882,"end":123.866,"channel":0,"text":["And... Did you change the curtains?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":126.048,"end":127.229,"channel":0,"text":["I mean, they were grey."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":132.908,"end":136.551,"channel":0,"text":["Yeah, 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":137.071,"end":140.094,"channel":0,"text":["So it was just to keep the room a little bit dark."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":141.114,"end":144.877,"channel":0,"text":["So yeah, if you could put them back, it would be really nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":155.626,"end":156.847,"channel":0,"text":["Yeah, please change it back."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":158.388,"end":160.149,"channel":0,"text":["I mean, the green one, yeah, change it back."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":160.189,"end":161.53,"channel":0,"text":["But the other one, I think it's nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":164.555,"end":181.467,"channel":0,"text":["Okay, okay, then yeah, okay, he dressed my own decorations That been there was not the one that was here The the black bean trash can it was it was not like that that it was a metal one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":182.748,"end":183.068,"channel":0,"text":["Well, what?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":186.944,"end":207.654,"channel":0,"text":["Okay, perfect, but this one you can take it with you because it's yours and then let's just bring back the the metal one I Think it fits better with the room Uh-huh Okay, perfect, ah Perfect."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":207.674,"end":207.994,"channel":0,"text":["Perfect."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":208.034,"end":208.595,"channel":0,"text":["That's great."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":209.375,"end":209.675,"channel":0,"text":["Thank you."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":209.715,"end":210.215,"channel":0,"text":["Thank you for that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":210.736,"end":210.756,"channel":0,"text":["I"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":213.266,"end":218.452,"channel":0,"text":["And you reported that one of the statues fell while you were here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":219.674,"end":223.077,"channel":0,"text":["Yeah, but what happened?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":223.598,"end":224.98,"channel":0,"text":["Ah, it lost the arm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":228.544,"end":229.425,"channel":0,"text":["Did you keep the arm?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":231.937,"end":235.401,"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":236.081,"end":245.992,"channel":0,"text":["And then maybe, yeah, you would just need to cover what's taken from the work of doing the restoration, because I don't want to charge you with the whole statue."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":246.392,"end":250.216,"channel":0,"text":["So maybe we can actually reach an agreement there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":253.059,"end":253.36,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":256.58,"end":262.141,"channel":0,"text":["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.782,"end":283.086,"channel":0,"text":["because I mean regarding the cleaning and The procedures you use for cleaning them because because I see some some a little bit stains on the on the on the on the glass so so I guess maybe you clean them, but you didn't pay close attention and"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":288.155,"end":291.176,"channel":0,"text":["Ah, okay, then maybe that's why you should clean them."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":291.796,"end":297.698,"channel":0,"text":["I mean, they all have a frame and a glass, so you won't do any damage to it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":298.158,"end":301.919,"channel":0,"text":["You can just clean it with a wet wipe, like you would clean a window."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":303.019,"end":303.3,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":309.841,"end":310.142,"channel":0,"text":["Mm-hmm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":314.503,"end":314.803,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":317.341,"end":319.363,"channel":0,"text":["Mm-hmm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":319.403,"end":323.726,"channel":0,"text":["But yeah, 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":328.19,"end":329.571,"channel":0,"text":["I mean, just leave it like that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":329.611,"end":332.954,"channel":0,"text":["I mean, there's not much to do if you actually painted it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":339.819,"end":343.542,"channel":0,"text":["Yeah, I don't agree with you, but I mean, it is what it is."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":346.264,"end":346.665,"channel":0,"text":["What to do?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":349.195,"end":351.917,"channel":0,"text":["But I think, is that a stein?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":355.006,"end":357.047,"channel":0,"text":["Is that a stain there on the couch?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":358.648,"end":362.61,"channel":0,"text":["Yeah, on the down part it's a little bit clearer than the couch."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":364.711,"end":366.312,"channel":0,"text":["Or you put your shoes there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":366.352,"end":368.953,"channel":0,"text":["I mean, I am not sure what is wrong."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":369.413,"end":374.936,"channel":0,"text":["But yeah, it's a little bit clearer than the rest."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":375.516,"end":380.719,"channel":0,"text":["I don't know if it's just used or there is a stain there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":386.337,"end":387.358,"channel":0,"text":["Yes, please do that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":387.478,"end":391.7,"channel":0,"text":["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.202,"end":396.403,"channel":0,"text":["It was definitely not like that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":396.763,"end":398.284,"channel":0,"text":["And in this one, there used to be a pillow."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":398.404,"end":399.285,"channel":0,"text":["What happened with that one?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":401.026,"end":402.727,"channel":0,"text":["In the black couch."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":402.907,"end":403.187,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":405.989,"end":406.389,"channel":0,"text":["Oh, OK."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":406.649,"end":407.59,"channel":0,"text":["OK, good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":407.75,"end":411.592,"channel":0,"text":["If we can actually put it back, it would be perfect."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":413.905,"end":431.483,"channel":0,"text":["And the rest I think you take good care The flooring is good Yeah I think Yeah, I think it's okay Okay"]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":"Whisper large-v2@whisper.fake, 2","created_ago":"1 minute","completed_by":2,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-22T14:59:53.140458Z","updated_at":"2024-09-22T15:00:53.500939Z","draft_created_at":null,"lead_time":1.079,"import_id":null,"last_action":null,"task":112,"project":8,"updated_by":1,"parent_prediction":null,"parent_annotation":null,"last_created_by":null} {"id":208,"result":[{"value":{"start":7.776,"end":8.406,"channel":0,"text":["Right there, okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":12.384,"end":15.046,"channel":0,"text":["Yeah, the location is amazing."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":15.446,"end":23.01,"channel":0,"text":["And actually the view, I mean, here, the street, I think is really unique because this building is a little bit shifted from the street."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":23.07,"end":28.513,"channel":0,"text":["So I think it's really nice that you can actually see the street and the cars can just go in this direction."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":28.573,"end":29.354,"channel":0,"text":["It's really nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":30.214,"end":35.197,"channel":0,"text":["But yeah, I mean, everything here is I mean, sorry for the boxes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":35.277,"end":37.539,"channel":0,"text":["It's just I moved in quite recently."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":37.619,"end":39.78,"channel":0,"text":["So, I mean, I need to take care of that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":41.838,"end":42.9,"channel":0,"text":["and the boxes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":44.022,"end":50.414,"channel":0,"text":["Yes, because in these ones I packed really careful things like the horse there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":51.96,"end":52.5,"channel":0,"text":["the dog there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":53.121,"end":59.246,"channel":0,"text":["And, and the big one was smart, more for general things like the plushies and this kind of things."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":59.766,"end":63.048,"channel":0,"text":["Yeah, I am a really big fan of bears, as you can see."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":63.349,"end":66.071,"channel":0,"text":["So the plushies are really, really important for me."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":66.831,"end":68.813,"channel":0,"text":["So this one, I brought it from China."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":68.833,"end":74.677,"channel":0,"text":["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.418,"end":79.661,"channel":0,"text":["So yeah, they gave me this as Yeah, it was really, really nice experience."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":81.149,"end":81.389,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":81.79,"end":89.715,"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."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":89.735,"end":93.518,"channel":0,"text":["Cause the brown bears are really, really a thing there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":93.578,"end":97.941,"channel":0,"text":["And I mean, yeah, they have issues with them in the, in the forests."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":97.961,"end":104.085,"channel":0,"text":["Uh, so they attack people, but they are trying to protect them and just keep them on a safe areas."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":105.206,"end":105.366,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":109.822,"end":111.503,"channel":0,"text":["Yeah, the dog is it's a gift."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":111.683,"end":132.65,"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 I don't I am not willing to to give it away or just throw it away because because it's really really costly but yeah, I I should sell it or something and"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":136.138,"end":137.72,"channel":0,"text":["Yes, yes, I do them by hand."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":138.0,"end":141.704,"channel":0,"text":["So I mean, this is kind of my work, as you can see."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":141.984,"end":143.806,"channel":0,"text":["So I have like different colors."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":144.127,"end":151.735,"channel":0,"text":["I mean, these ones are pieces that I find myself really drawn to because those were my first pieces."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":152.415,"end":157.641,"channel":0,"text":["So I give them as a reminder of that you always need to remain humble."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":158.302,"end":165.049,"channel":0,"text":["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."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":165.109,"end":167.832,"channel":0,"text":["So, you know, it's always good to keep a reminder."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":167.872,"end":171.677,"channel":0,"text":["Yeah Yeah, I mean the blue one"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":173.157,"end":175.719,"channel":0,"text":["Yeah, the blue one is one of the last collection."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":176.119,"end":179.802,"channel":0,"text":["So it's you see there is a little bit of a difference in the shape."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":180.523,"end":183.946,"channel":0,"text":["And I think that one it's, it's really nice piece of art."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":185.006,"end":189.43,"channel":0,"text":["My favorite favorite is the brown one, because that one is, it's"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":191.3,"end":202.512,"channel":0,"text":["Yes, because that one is really special to me because that one was a special set that we did for the King of Sweden."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":203.453,"end":210.64,"channel":0,"text":["Yeah, so he asked me 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.161,"end":211.361,"channel":0,"text":["Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":213.462,"end":216.926,"channel":0,"text":["That one is a little bit of a new work that I am doing."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":217.467,"end":220.911,"channel":0,"text":["So it's, it's a little bit of conceptual."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":221.271,"end":226.738,"channel":0,"text":["So it's how the art deflates or how people lose interest in that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":227.418,"end":228.7,"channel":0,"text":["So, yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":230.546,"end":244.094,"channel":0,"text":["So I think I went from bigger pieces to smaller pieces and in that sense I wanted to make a construction and maybe I could actually do a show with this and actually do the whole sequence."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":246.457,"end":253.121,"channel":0,"text":["Yeah, yeah, paintings is not actual my thing, but yeah, I really enjoy them."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":253.561,"end":254.582,"channel":0,"text":["And also picture."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":254.762,"end":257.183,"channel":0,"text":["So this one is a picture from a friend of mine."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":257.223,"end":260.065,"channel":0,"text":["He does photography, and I think he's really, really talented."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":260.805,"end":263.106,"channel":0,"text":["And this one, it's a classic."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":263.547,"end":267.789,"channel":0,"text":["So this one, it's a gift from one friend."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":268.73,"end":273.692,"channel":0,"text":["And this one, 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":275.374,"end":283.3,"channel":0,"text":["And I actually put it there so 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.961,"end":289.586,"channel":0,"text":["So I think it can be better appreciated when it's with the lamp there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":293.649,"end":295.171,"channel":0,"text":["Yes, yeah, you're right."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":295.251,"end":296.732,"channel":0,"text":["I mean, I think you are a little bit tall."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":297.112,"end":299.194,"channel":0,"text":["For my height, it's okay, you know?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":300.235,"end":302.417,"channel":0,"text":["Yeah, you're a little bit tall."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":307.423,"end":310.108,"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":311.029,"end":315.036,"channel":0,"text":["So yeah, maybe I am a little bit of a dwarf compared to you."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":317.501,"end":340.394,"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 this this plant 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.815,"end":342.555,"channel":0,"text":["Yes, of course."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":343.056,"end":343.836,"channel":0,"text":["This is Margaret."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":345.637,"end":346.558,"channel":0,"text":["And this is Mary."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":347.398,"end":350.64,"channel":0,"text":["So yeah, I really love them."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":350.9,"end":352.621,"channel":0,"text":["We have a strong relationship."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":352.661,"end":356.704,"channel":0,"text":["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.304,"end":357.484,"channel":0,"text":["Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":359.185,"end":361.966,"channel":0,"text":["And here I have my desk, my working area."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":362.987,"end":369.05,"channel":0,"text":["Of course, for the finances, because when you are an entrepreneur, you have to deal with your own finances."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":369.61,"end":372.431,"channel":0,"text":["But my study is far off the street."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":376.081,"end":378.744,"channel":0,"text":["Yeah, 100% because I don't want to mix work."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":378.964,"end":381.506,"channel":0,"text":["I only keep like, you know, finished pieces."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":381.946,"end":384.549,"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.909,"end":390.935,"channel":0,"text":["Whenever you have the work at home, because everything gets messed up and dirty and you cannot stop."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":391.835,"end":394.458,"channel":0,"text":["So I think it's, it's for the best."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":397.771,"end":399.673,"channel":0,"text":["Yeah, one is for the studio."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":400.193,"end":401.054,"channel":0,"text":["Another one is here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":401.574,"end":405.217,"channel":0,"text":["And the card is for the trash room."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":405.638,"end":409.0,"channel":0,"text":["So it has, yeah, it has a security."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":411.602,"end":411.783,"channel":0,"text":["Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":413.804,"end":418.969,"channel":0,"text":["Yes, it's a security thing because they have people coming in to look for the pen."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":419.889,"end":420.89,"channel":0,"text":["So it's good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":425.516,"end":428.518,"channel":0,"text":["No, no, no, no, no, no, no, no, of course not."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":428.578,"end":430.239,"channel":0,"text":["I wouldn't keep a credit card there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":430.84,"end":432.06,"channel":0,"text":["It's just otherwise I lose them."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":432.301,"end":436.403,"channel":0,"text":["But I was thinking of putting a little, little base or something."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":436.844,"end":439.906,"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.607,"end":441.927,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":444.609,"end":444.809,"channel":0,"text":["Hmm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":447.887,"end":448.507,"channel":0,"text":["Yes, yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":449.548,"end":452.109,"channel":0,"text":["Yes, but that one, I mean, yeah, I could put it there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":452.209,"end":453.749,"channel":0,"text":["But I wanted to get something different."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":453.829,"end":455.93,"channel":0,"text":["I don't want to use my piece in that sense."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":455.97,"end":457.271,"channel":0,"text":["I think it's more of an art."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":457.751,"end":460.092,"channel":0,"text":["So I wanted something more functional to put there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":463.553,"end":464.433,"channel":0,"text":["Yeah, me neither."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":465.113,"end":467.714,"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.497,"channel":0,"text":["Because, yeah, the bean, it's hard to find nice beans."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":474.857,"end":477.078,"channel":0,"text":["You know, it's a real problem."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":479.238,"end":481.163,"channel":0,"text":["Yeah, it's especially ugly, really."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":481.243,"end":488.802,"channel":0,"text":["I want to hide it somewhere, but the thing is that I don't have any cupboard here and the TV furniture is just transparent, of course."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":490.905,"end":520.525,"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 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 Okay Thank you for coming"]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":"Whisper large-v2@whisper.fake, 2","created_ago":"0 minutes","completed_by":2,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-22T14:59:56.449778Z","updated_at":"2024-09-22T15:00:53.602498Z","draft_created_at":null,"lead_time":1.778,"import_id":null,"last_action":null,"task":113,"project":8,"updated_by":1,"parent_prediction":null,"parent_annotation":null,"last_created_by":null} {"id":209,"result":[{"value":{"start":8.948,"end":14.531,"channel":0,"text":["Yeah, I mean, you have had a short stay here, but why would you like to leave?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":14.551,"end":15.932,"channel":0,"text":["I mean, I don't understand it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":16.092,"end":18.454,"channel":0,"text":["Everything is so nice in this apartment."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":19.054,"end":22.296,"channel":0,"text":["I mean, it's a but well, it's OK."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":25.898,"end":26.878,"channel":0,"text":["OK, I see."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":27.799,"end":29.32,"channel":0,"text":["Well, yeah, but let's check."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":29.68,"end":30.581,"channel":0,"text":["Did you do the cleaning?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":32.902,"end":34.783,"channel":0,"text":["I doesn't seem like it, you know."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":43.604,"end":46.045,"channel":0,"text":["Did you break the panda?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":48.026,"end":51.327,"channel":0,"text":["Yeah, look, it looks like the arm is stitched."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":53.628,"end":57.049,"channel":0,"text":["No, it's an original panda from Hong Kong."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":57.929,"end":59.129,"channel":0,"text":["How are you actually there?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":60.43,"end":61.81,"channel":0,"text":["You actually broke it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":64.231,"end":66.152,"channel":0,"text":["Oh, come on, it's funny for you, this?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":67.132,"end":68.292,"channel":0,"text":["It's not funny for me."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":69.753,"end":70.753,"channel":0,"text":["It's really not funny."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":74.992,"end":76.653,"channel":0,"text":["Really, I cannot believe this."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":78.615,"end":81.317,"channel":0,"text":["We will check, definitely we will check on the pictures."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":82.477,"end":84.699,"channel":0,"text":["This is unacceptable, unacceptable."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":89.783,"end":91.004,"channel":0,"text":["What did you do to the painting?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":100.05,"end":103.773,"channel":0,"text":["No, it's, you clean the painting."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":104.238,"end":106.218,"channel":0,"text":["You clean the painting and you did it wrong."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":111.519,"end":112.399,"channel":0,"text":["No, it's not."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":113.24,"end":114.2,"channel":0,"text":["Of course it's not."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":116.0,"end":116.94,"channel":0,"text":["Oh my god."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":120.081,"end":121.821,"channel":0,"text":["This is dusty."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":122.521,"end":125.542,"channel":0,"text":["What which kind which kind of cleaning?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":125.882,"end":126.402,"channel":0,"text":["Did he do?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":126.702,"end":126.962,"channel":0,"text":["Because?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":130.162,"end":133.423,"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.921,"end":143.002,"channel":0,"text":["Yeah, 100% because this is not acceptable, really."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":145.802,"end":146.682,"channel":0,"text":["The TV is working?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":148.203,"end":148.483,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":152.664,"end":156.285,"channel":0,"text":["Did you break the glass of the TV?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":158.705,"end":160.505,"channel":0,"text":["Yeah, I can see a line there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":163.306,"end":167.747,"channel":0,"text":["Your hair, you said that you hire people to clean and you say that that mark is your hair."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":172.563,"end":175.545,"channel":0,"text":["I understand, I don't see how your hair will reach that point."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":179.188,"end":179.948,"channel":0,"text":["Of course not."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":181.149,"end":186.213,"channel":0,"text":["I don't understand how you, I mean, this is so unrespectful from you, really."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":186.633,"end":187.854,"channel":0,"text":["I cannot really understand."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":188.194,"end":190.796,"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.517,"end":193.498,"channel":0,"text":["Huh, that's fine."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":198.262,"end":199.442,"channel":0,"text":["Okay, oh my God."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":200.603,"end":201.424,"channel":0,"text":["I cannot believe this."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":203.206,"end":204.427,"channel":0,"text":["This is incredible."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":204.727,"end":206.467,"channel":0,"text":["And there is one base missing there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":212.53,"end":214.151,"channel":0,"text":["Okay, okay, that's good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":214.211,"end":217.552,"channel":0,"text":["But please put it back because it needs to be there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":218.413,"end":220.073,"channel":0,"text":["It's a green one, right?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":221.014,"end":221.274,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":221.934,"end":225.276,"channel":0,"text":["But then 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":228.337,"channel":0,"text":["Because now I am not really sure."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":228.377,"end":232.579,"channel":0,"text":["I mean, after the panda, I cannot believe you just saw the arm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":234.292,"end":235.293,"channel":0,"text":["I cannot get over this."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":236.214,"end":239.116,"channel":0,"text":["And were you drinking coffee or eating here?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":239.176,"end":243.879,"channel":0,"text":["I mean, this has... It's full of stains."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":246.942,"end":248.303,"channel":0,"text":["The purple pillows."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":251.685,"end":251.986,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":252.706,"end":254.548,"channel":0,"text":["I really hope it is water only, please."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":256.349,"end":257.45,"channel":0,"text":["This is a different remote."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":262.834,"end":264.075,"channel":0,"text":["Yeah, but you didn't report it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":266.198,"end":268.52,"channel":0,"text":["Yeah, but you didn't report that it was broken."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":273.204,"end":274.225,"channel":0,"text":["I will check my emails."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":274.325,"end":274.886,"channel":0,"text":["Yes, yes, 100%."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":279.11,"end":282.453,"channel":0,"text":["The carpet was a little bit closer to the couch."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":287.698,"end":288.218,"channel":0,"text":["The carpet."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":291.721,"end":292.502,"channel":0,"text":["What are you looking for?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":297.091,"end":301.472,"channel":0,"text":["I am trying to make an inspection here and you're just playing."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":302.012,"end":302.492,"channel":0,"text":["What is this?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":303.452,"end":304.053,"channel":0,"text":["What is this?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":308.894,"end":310.114,"channel":0,"text":["No, but you moved the carpet."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":311.794,"end":312.875,"channel":0,"text":["Yeah, there is a mark now."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":317.476,"end":319.516,"channel":0,"text":["Everything is not water in this life, you know?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":321.678,"end":322.538,"channel":0,"text":["I cannot believe this."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":323.239,"end":330.561,"channel":0,"text":["I will come tomorrow morning 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.203,"end":335.483,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":337.003,"end":337.644,"channel":0,"text":["See you tomorrow."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":341.005,"end":341.605,"channel":0,"text":["What happened?"]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":"Whisper large-v2@whisper.fake, 2","created_ago":"0 minutes","completed_by":2,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-22T14:59:58.808650Z","updated_at":"2024-09-22T15:00:53.713157Z","draft_created_at":null,"lead_time":1.152,"import_id":null,"last_action":null,"task":114,"project":8,"updated_by":1,"parent_prediction":null,"parent_annotation":null,"last_created_by":null} {"id":210,"result":[{"value":{"start":16.824,"end":19.526,"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":23.188,"channel":0,"text":["But as you can see, I have a green, you know, forest view."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":23.308,"end":24.929,"channel":0,"text":["So I really appreciated that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":25.309,"end":35.335,"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 priorities."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":38.109,"end":38.93,"channel":0,"text":["Yeah, it's really nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":38.97,"end":41.491,"channel":0,"text":["I think it gives the touch to the room, really."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":41.732,"end":41.952,"channel":0,"text":["Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":42.932,"end":44.554,"channel":0,"text":["And as you can see, I have a lot of paintings."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":44.774,"end":49.317,"channel":0,"text":["I mean, this, of course, is a Van Gogh original."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":49.337,"end":49.41,"channel":0,"text":["100%."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":49.417,"end":56.742,"channel":0,"text":["It was super costly, but I wanted to actually show off this one because I think it's marvelous."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":57.743,"end":60.685,"channel":0,"text":["And the rest, I am not really aware."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":61.121,"end":81.355,"channel":0,"text":["who the painters are but I mean this one this one was like $5,000 if I recall well or more I'm not sure and this one was a gift but also you know I have a really really rich friend so they gave they gift me this for my 30th birthday"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":82.515,"end":83.836,"channel":0,"text":["Yeah, it's really nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":84.136,"end":88.818,"channel":0,"text":["And if you can see the figure there, it's green marble."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":89.559,"end":93.08,"channel":0,"text":["And it's so, so expensive that you cannot imagine."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":93.4,"end":96.582,"channel":0,"text":["I mean, it's maybe worth the whole apartment here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":97.522,"end":99.063,"channel":0,"text":["It's really, really the best."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":101.944,"end":102.704,"channel":0,"text":["Yeah, of course."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":102.804,"end":105.926,"channel":0,"text":["So I think that really, really matches."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":109.106,"end":111.007,"channel":0,"text":["I mean, in winter, maybe sometimes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":111.687,"end":115.049,"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.91,"end":126.314,"channel":0,"text":["And the couches, as you can see, it's really giving this luxurious look, because, I mean, they are in this velvet."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":127.135,"end":133.878,"channel":0,"text":["I especially asked them to be like this, because I really like the soft touch, and I really enjoy it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":134.158,"end":138.04,"channel":0,"text":["But yeah, I mean, also that sculpture there that you can see."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":138.82,"end":141.142,"channel":0,"text":["Yeah, it's a really unique piece."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":141.983,"end":148.489,"channel":0,"text":["I just sent it to be done for me, especially because I really like this kind of sculptures."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":148.97,"end":161.342,"channel":0,"text":["And it actually means the empowerment of young ladies as me, you know, like rich and independent women."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":162.992,"end":164.493,"channel":0,"text":["Yeah, of course."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":165.193,"end":169.235,"channel":0,"text":["And yeah, I mean, I just keep books and things to read."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":170.096,"end":174.098,"channel":0,"text":["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.479,"end":181.621,"channel":0,"text":["No, I mean, Sherlock Holmes is not even a genre that I like."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":182.342,"end":185.744,"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.805,"end":190.506,"channel":0,"text":["No, that's also something I like to pretend."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":191.314,"end":195.376,"channel":0,"text":["But yeah, my ex-boyfriend used to play, so I think he left it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":195.817,"end":199.619,"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.979,"end":208.364,"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 I am into this kind of stuff."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":210.313,"end":212.954,"channel":0,"text":["It's a little bit, you know, here and there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":213.554,"end":215.675,"channel":0,"text":["And this lamp is really, really nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":216.476,"end":217.376,"channel":0,"text":["This I got it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":217.956,"end":222.458,"channel":0,"text":["It was a sale, but it's so expensive that it was even not a sale price."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":222.658,"end":225.56,"channel":0,"text":["I think it was $10,000, but it's really exclusive."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":225.88,"end":227.701,"channel":0,"text":["It was even more expensive than the painting."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":227.781,"end":230.342,"channel":0,"text":["I think I might change this one because it's not expensive enough."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":231.162,"end":231.422,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":232.423,"end":232.943,"channel":0,"text":["What do you think?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":236.289,"end":264.509,"channel":0,"text":["yeah but maybe it's not expensive enough yeah yeah i think yeah yeah because i think everything is so costly then then maybe it doesn't look that you know it 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 resellers here but"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":265.93,"end":270.351,"channel":0,"text":["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.731,"end":274.072,"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.312,"end":278.353,"channel":0,"text":["So then I went to pick it up and actually to match the colors."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":278.693,"end":284.174,"channel":0,"text":["And as you can see, there are some hints of green there and in the figures."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":284.614,"end":290.256,"channel":0,"text":["And then that's why I order for the room to be painted green, because I wanted to make a contrast."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":295.482,"end":308.945,"channel":0,"text":["Yeah, I mean that one the service left it because they were just unpacking and you know, I don't do this for myself So you came a little bit early, but yeah, they were just unpacking things and they were asking me Yeah, where do we put this in there?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":308.985,"end":317.128,"channel":0,"text":["You know, it's so exhausting even though they do it for me I I need to be just saying like yeah, put it here put it there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":317.668,"end":318.468,"channel":0,"text":["It's so exhausting."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":318.528,"end":318.708,"channel":0,"text":["Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":318.728,"end":318.748,"channel":0,"text":["I"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":323.419,"end":334.543,"channel":0,"text":["I mean, those bins are specifically designed for cans and bottles, because I was planning to have guests here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":336.624,"end":341.326,"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.806,"end":346.087,"channel":0,"text":["I wanted to make a little bit of a difference."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":346.788,"end":347.588,"channel":0,"text":["But of course, I mean,"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":350.024,"end":356.391,"channel":0,"text":["Let's see how it works when I have more guests, you know, because I would like to organize parties, of course."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":357.652,"end":362.477,"channel":0,"text":["Maybe this is Yeah, I mean, it's not that spacious this room."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":362.497,"end":365.701,"channel":0,"text":["Maybe this is not the accurate room to have those here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":366.241,"end":369.305,"channel":0,"text":["But yeah, maybe maybe I have the"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":372.778,"end":373.278,"channel":0,"text":["The table."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":373.679,"end":373.919,"channel":0,"text":["Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":374.099,"end":374.699,"channel":0,"text":["Yes, of course."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":375.179,"end":376.54,"channel":0,"text":["Yes hundred percent."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":376.58,"end":382.963,"channel":0,"text":["Yeah, I could remove the table and the carpet because if some of them just Put something on the carpet."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":383.003,"end":398.99,"channel":0,"text":["I will just kill them hundred percent Yeah Clumsy people That one Uh-huh"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":402.551,"end":405.179,"channel":0,"text":["You mean this one or the one with the computer?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":408.732,"end":415.757,"channel":0,"text":["I mean, the one with the computer, I was just checking some things on the computer and I just put it there, but it's a really expensive one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":416.377,"end":417.678,"channel":0,"text":["I mean, it's a special design."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":419.639,"end":422.261,"channel":0,"text":["It's really, really a special edition."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":423.081,"end":425.423,"channel":0,"text":["So I think I would keep that one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":425.483,"end":426.844,"channel":0,"text":["The other one, yes, you're right."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":427.164,"end":430.986,"channel":0,"text":["But I might put the statue on top of that really expensive one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":431.907,"end":434.409,"channel":0,"text":["Because, yeah, I think it is nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":436.266,"end":448.657,"channel":0,"text":["Yeah, yeah, but that one yeah, I can just if you wanted you can take it with you really I Mean it is expensive but not as expensive as it should You're right, you're right."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":448.717,"end":461.208,"channel":0,"text":["Yeah Yeah, 100% Yeah, the TV it's I mean I think it's not big enough I might get a bigger one I"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":462.739,"end":470.003,"channel":0,"text":["Yeah, or maybe a projector, because I sometimes like to do movie night and then it's not, I think it's not enough."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":470.564,"end":471.124,"channel":0,"text":["What do you think?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":482.851,"end":483.451,"channel":0,"text":["Yeah, that's true."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":483.571,"end":484.092,"channel":0,"text":["You're right."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":486.033,"end":487.854,"channel":0,"text":["Yeah, maybe I can do some rearranging."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":488.314,"end":491.376,"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.382,"end":495.662,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":496.243,"end":496.443,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":496.743,"end":500.426,"channel":0,"text":["I mean, yeah, you have this kind of problems, but they take the table, take the table."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":501.247,"end":501.527,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":"Whisper large-v2@whisper.fake, 2","created_ago":"0 minutes","completed_by":2,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-22T15:00:02.294083Z","updated_at":"2024-09-22T15:00:53.828520Z","draft_created_at":null,"lead_time":1.18,"import_id":null,"last_action":null,"task":115,"project":8,"updated_by":1,"parent_prediction":null,"parent_annotation":null,"last_created_by":null} {"id":211,"result":[{"value":{"start":8.874,"end":10.44,"channel":0,"text":["Sorry, my nose is itching."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":14.314,"end":14.675,"channel":0,"text":["No, it's okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":22.239,"end":26.262,"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.983,"end":28.844,"channel":0,"text":["So I think it's good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":29.044,"end":41.693,"channel":0,"text":["But I would like also you to tell me, I mean, the purpose of this room is more like a cozy room to take some rest when you come back from work or I mean, what's the purpose as well?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":42.774,"end":44.635,"channel":0,"text":["So you want to watch movies."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":44.675,"end":48.338,"channel":0,"text":["I mean, what if you can tell me a little bit, what is the purpose?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":57.395,"end":79.996,"channel":0,"text":["Uh-huh Okay, I see yeah, but but then maybe 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 color for the for the couches or gray light gray that could also work and"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":80.897,"end":84.299,"channel":0,"text":["I think you might need to reconsider that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":84.639,"end":86.08,"channel":0,"text":["And maybe the small one not there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":86.4,"end":91.583,"channel":0,"text":["I would put the big one there just to see the TV and be comfortable with it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":95.265,"end":97.226,"channel":0,"text":["Or just put it in another place."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":101.266,"end":105.708,"channel":0,"text":["Maybe if you have one of this size there, that would be nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":105.768,"end":107.149,"channel":0,"text":["Or you could have two of them."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":107.669,"end":108.93,"channel":0,"text":["Maybe you could move that one here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":109.89,"end":111.791,"channel":0,"text":["But you should change the color, of course."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":112.091,"end":115.873,"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.454,"end":120.876,"channel":0,"text":["And you can have a reading area, and then you have the TV area."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":121.216,"end":122.557,"channel":0,"text":["I think that can also work."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":123.357,"end":128.379,"channel":0,"text":["But maybe that table there, the one with box, I think that is not really functional."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":130.801,"end":153.918,"channel":0,"text":["Maybe I would just take it out and move this lamp there so you have more of a cozy environment Yeah, I think that table should go away Yeah, I think that that could work and this table I mean, I don't know if it's actually actually functional for you but"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":158.14,"end":160.101,"channel":0,"text":["Yeah, but maybe it's too low."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":160.181,"end":162.083,"channel":0,"text":["Maybe you need a little bit something higher."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":165.305,"end":173.571,"channel":0,"text":["No, I mean, you can place the items, but maybe you can get a higher one and then with the library so you can put the books in the library."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":177.013,"end":177.353,"channel":0,"text":["OK."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":179.415,"end":186.84,"channel":0,"text":["Yeah, I mean, you could you could get a library there as well, and then you can put the books and things just there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":188.556,"end":203.178,"channel":0,"text":["yeah but I think the keys are better to have them close to the door so maybe you can put a small table here like 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":207.791,"end":222.485,"channel":0,"text":["that 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.969,"end":236.496,"channel":0,"text":["No, no, 100%, but I think maybe then that is not the best table to keep the computer."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":237.817,"end":241.62,"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":243.932,"end":251.715,"channel":0,"text":["Maybe you can get something that reclines a little bit so you can have different heights and different angles that could work."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":254.036,"end":259.619,"channel":0,"text":["I think also you could put some color with the pillows because these pillows are really dark."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":263.823,"end":271.33,"channel":0,"text":["I would use a little bit 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":273.332,"end":278.458,"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":282.684,"end":289.671,"channel":0,"text":["I mean, if you have the gray, the gray furniture, then I think it might be better."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":290.972,"end":304.325,"channel":0,"text":["But I will just go more for clear colors, like white or beige or ochre or this kind of colors that are more easy to see for a long period of time."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":310.069,"end":331.015,"channel":0,"text":["Yeah, I mean I think for that you could use this area as well and purchase one of those 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.935,"end":333.796,"channel":0,"text":["So I think that would be good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":338.695,"end":341.836,"channel":0,"text":["Yeah, I mean, that shelf is a little bit up."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":343.137,"end":349.779,"channel":0,"text":["So yeah, you should... I mean, you can maybe hang it from the roof."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":350.419,"end":351.14,"channel":0,"text":["That could work."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":351.66,"end":358.382,"channel":0,"text":["Or also you can purchase one of those settings in which you can put them next to the window."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":359.363,"end":361.744,"channel":0,"text":["So hang it kind of to the window."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":363.084,"end":364.965,"channel":0,"text":["And then it will definitely get enough light."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":366.061,"end":366.261,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":367.363,"end":368.804,"channel":0,"text":["I think that that can actually help."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":374.27,"end":374.45,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":376.212,"end":376.493,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":376.733,"end":379.496,"channel":0,"text":["I mean, for that, I think you have too much happening on this room."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":382.23,"end":384.652,"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.393,"end":391.097,"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.618,"end":392.699,"channel":0,"text":["This one is a little bit off."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":393.479,"end":396.262,"channel":0,"text":["So I would maybe move this one here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":397.042,"end":400.245,"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.625,"end":408.992,"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.472,"end":411.234,"channel":0,"text":["So I think that can work better."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":421.927,"end":424.188,"channel":0,"text":["I don't know why you need two of them, actually."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":431.511,"end":432.492,"channel":0,"text":["I would keep the red one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":434.052,"end":436.473,"channel":0,"text":["Because it matches a little bit with the carpet."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":438.874,"end":440.235,"channel":0,"text":["I would take away the blue, yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":440.595,"end":445.798,"channel":0,"text":["And I would put that in not such a visible area, maybe in the back, whenever, yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":455.091,"end":455.612,"channel":0,"text":["No, of course, 100%."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":459.716,"end":460.336,"channel":0,"text":["I think it's good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":460.376,"end":466.382,"channel":0,"text":["I think it gives kind of a focal point as well, but I would actually put it in a higher table."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":467.103,"end":471.487,"channel":0,"text":["Because I think there it doesn't show that much."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":471.888,"end":474.671,"channel":0,"text":["So it's not something that you will stare at looking."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":474.731,"end":478.014,"channel":0,"text":["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":484.453,"end":507.484,"channel":0,"text":["Yeah, I mean that that could definitely work though they are from different styles So maybe if you move your plan, then you can put one in each corner and then that that might work I Think it's a it's a little bit Merging with the wall, so it's not really Taking the best out of it maybe if you actually"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":510.123,"end":514.664,"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.124,"end":517.605,"channel":0,"text":["I think they are not matching properly."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":518.185,"end":531.308,"channel":0,"text":["But maybe if you put a small table, like two small tables next, I mean, on both sides of the fireplace, then maybe you can put them and then they will have this beige it went off."]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":"Whisper large-v2@whisper.fake, 2","created_ago":"0 minutes","completed_by":2,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-22T15:00:05.584139Z","updated_at":"2024-09-22T15:00:53.940539Z","draft_created_at":null,"lead_time":1.53,"import_id":null,"last_action":null,"task":116,"project":8,"updated_by":1,"parent_prediction":null,"parent_annotation":null,"last_created_by":null} {"id":212,"result":[{"value":{"start":1.451,"end":6.713,"channel":0,"text":["I just put my hands in front of my view so I can check that they work."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":7.773,"end":9.394,"channel":0,"text":["But I don't know if they work."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":9.894,"end":10.534,"channel":0,"text":["Yeah, they work."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":12.235,"end":13.275,"channel":0,"text":["Yes, yes, they work."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":13.615,"end":13.855,"channel":0,"text":["OK."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":15.936,"end":16.956,"channel":0,"text":["You are on top of the box."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":19.237,"end":19.917,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":22.318,"end":22.818,"channel":0,"text":["Yeah, it's OK."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":25.845,"end":26.866,"channel":0,"text":["Yeah, it's really nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":27.086,"end":29.527,"channel":0,"text":["I mean, I really like the decoration and all."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":29.887,"end":33.288,"channel":0,"text":["I did a great work here because it's a little bit Asian style."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":33.409,"end":36.57,"channel":0,"text":["As you can see, all the furniture is really, really short."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":37.19,"end":51.557,"channel":0,"text":["So the idea is to have some more to see, of course, but to be, you know, in this, I mean, Japanese culture and everything, that everything is really low, you know, and you are eating almost on the floor."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":52.037,"end":55.082,"channel":0,"text":["So I was really designing this whole place with that idea."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":55.182,"end":57.866,"channel":0,"text":["I think it's really trending now and I really like it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":57.906,"end":60.99,"channel":0,"text":["And I think the window and everything gives really that vibe."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":61.891,"end":68.401,"channel":0,"text":["And the balcony, I mean, I think the whole setting is really nice and it gives that kind of vibe."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":71.172,"end":74.714,"channel":0,"text":["Yes, but that's because it is expensive, actually, yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":75.634,"end":82.498,"channel":0,"text":["So, I mean, the paintings and everything, everything is really, really expensive."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":82.738,"end":84.058,"channel":0,"text":["Even the sculptures there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":84.979,"end":89.001,"channel":0,"text":["Yeah, they are from really, really renowned artists."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":89.281,"end":93.583,"channel":0,"text":["And I mean, not to brag, but they are really expensive."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":95.956,"end":96.456,"channel":0,"text":["Yeah, of course."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":97.377,"end":102.38,"channel":0,"text":["I mean, that painting is neoclassic and it's really abstract."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":102.94,"end":111.946,"channel":0,"text":["And I really like that because it gives a little bit of that vibe of something ethereum and something really light."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":112.606,"end":134.544,"channel":0,"text":["so I think it really fits and of course the composition with the lamp and the plant is there so you get in the night I mean when I turn on the lamp it gives a really nice vibe towards that corner because you have the light coming to the paint and then of course with the whole setting it gives a really cozy environment."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":137.973,"end":145.718,"channel":0,"text":["Yeah, I mean, that's that's a really particular sculpture because the artist did this based on his childhood dog."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":147.179,"end":159.647,"channel":0,"text":["And I think it's really, really nice and humble from in the side of the artist, because 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.148,"end":166.672,"channel":0,"text":["And I think there is a lot of there's a lot of emotion in that kind of work."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":169.443,"end":187.539,"channel":0,"text":["Yeah, that guy, it's from a different artist, but basically, yeah, he did some work, voluntary work, and he was working in this rescue animals from the street, of course, in different countries, but"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":188.5,"end":208.341,"channel":0,"text":["basically there was this dog he really liked and basically he was, one leg was hurt and that's why he's like lifting one leg and basically he did a sculpture based on that dog and I think it's really, it's a really nice story behind it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":210.746,"end":219.638,"channel":0,"text":["It's really it's really hard to pick actually 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.299,"end":224.024,"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.808,"end":227.889,"channel":0,"text":["Yeah, that that is that is my favorite one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":230.83,"end":233.071,"channel":0,"text":["So yeah, that that that is what I like the most."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":233.111,"end":236.913,"channel":0,"text":["And I don't know if you realized, but I have the same painting in both."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":237.313,"end":243.536,"channel":0,"text":["And it's just to generate an equilibrium because 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.237,"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.59,"end":249.29,"channel":0,"text":["Yes, of course."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":250.011,"end":250.171,"channel":0,"text":["Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":250.251,"end":253.993,"channel":0,"text":["And as you can see, of course, also the colors are really matching."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":254.433,"end":257.975,"channel":0,"text":["And I use some copper and white."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":258.135,"end":260.697,"channel":0,"text":["And I mean, the colors are really, really soothing."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":263.158,"end":267.04,"channel":0,"text":["Yes, this is a gift from a friend."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":267.861,"end":270.062,"channel":0,"text":["He inherited from his great-grandmother."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":270.743,"end":275.465,"channel":0,"text":["And it's an actual Art Nouveau piece."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":278.237,"end":278.717,"channel":0,"text":["No, no, no."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":278.997,"end":280.258,"channel":0,"text":["It's not a sculpture."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":281.078,"end":282.299,"channel":0,"text":["It's metalwork."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":283.239,"end":285.26,"channel":0,"text":["And it's really, really nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":285.8,"end":286.881,"channel":0,"text":["It's an original piece."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":287.521,"end":290.262,"channel":0,"text":["And of course, it costs a fortune."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":290.322,"end":293.204,"channel":0,"text":["But my friend was like, no, I don't like this style."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":293.224,"end":295.245,"channel":0,"text":["And I was like, oh my god, this is so gorgeous."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":295.625,"end":297.986,"channel":0,"text":["I will just put it in my living room."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":302.513,"end":307.556,"channel":0,"text":["Yeah, I wanted to make a separation because we have some kind of style there and some other different here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":308.537,"end":309.917,"channel":0,"text":["That's why I separated it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":310.578,"end":314.74,"channel":0,"text":["And so basically, in this side, we have more like modern pieces."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":314.84,"end":317.362,"channel":0,"text":["And in this one, it's more classic pieces."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":318.562,"end":319.743,"channel":0,"text":["That's why the separation."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":322.884,"end":325.366,"channel":0,"text":["Yeah, the red one is a really special one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":325.786,"end":336.153,"channel":0,"text":["It's a unique piece that I actually asked for me because this artist would do this in orange."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":336.253,"end":337.494,"channel":0,"text":["That's her color normally."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":337.514,"end":340.156,"channel":0,"text":["But I was like, this piece would look so nice in red."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":340.516,"end":343.459,"channel":0,"text":["And it would actually fit with whatever I wanted."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":343.739,"end":347.081,"channel":0,"text":["It's just put a small touches of color in my room."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":347.681,"end":350.644,"channel":0,"text":["And then she made it for me specifically."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":350.724,"end":351.324,"channel":0,"text":["That was great."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":352.885,"end":353.185,"channel":0,"text":["Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":362.288,"end":364.109,"channel":0,"text":["I mean, this is more like a practical thing."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":365.709,"end":369.391,"channel":0,"text":["But yeah, I mean, I maybe should set something next to the door."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":369.951,"end":372.192,"channel":0,"text":["And then just to leave things there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":373.012,"end":375.033,"channel":0,"text":["Because yeah, that might be you might be right."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":375.593,"end":376.513,"channel":0,"text":["There are a couple of things."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":376.893,"end":382.275,"channel":0,"text":["But I was thinking of putting something to actually stand out like a central piece."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":384.673,"end":387.255,"channel":0,"text":["I mean, this is the keys of the apartment."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":388.016,"end":392.841,"channel":0,"text":["And that is the card for the entrance, because we have a BIP code."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":393.661,"end":394.782,"channel":0,"text":["And then that's the remote."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":395.043,"end":398.406,"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.85,"end":400.43,"channel":0,"text":["Yes, yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":400.55,"end":402.292,"channel":0,"text":["I mean, this is a movie style."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":402.352,"end":403.872,"channel":0,"text":["I really like to watch movies."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":404.473,"end":408.515,"channel":0,"text":["And then this, this sofa is really working for that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":408.555,"end":411.757,"channel":0,"text":["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.138,"end":415.239,"channel":0,"text":["So I invite some friends over and we watch the movies."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":415.319,"end":415.96,"channel":0,"text":["It's really nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":420.195,"end":421.417,"channel":0,"text":["Um, not really."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":422.618,"end":431.626,"channel":0,"text":["But now that you mentioned, yeah, I think one of the one of 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.246,"end":433.648,"channel":0,"text":["And then she took it to clean."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":434.689,"end":434.909,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":438.507,"end":439.087,"channel":0,"text":["Yeah, of course."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":439.147,"end":442.969,"channel":0,"text":["But I think whenever it's back, she would put it there again."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":443.109,"end":443.309,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":444.129,"end":444.429,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":444.449,"end":447.85,"channel":0,"text":["Because she puts a special products to remove the stains."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":448.791,"end":448.991,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":449.351,"end":452.132,"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.512,"end":456.133,"channel":0,"text":["But still, she puts some extra products to remove it faster."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":456.473,"end":456.673,"channel":0,"text":["Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":466.017,"end":466.857,"channel":0,"text":["I don't see that many."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":469.372,"end":472.694,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":476.736,"end":480.038,"channel":0,"text":["It's because I have so much green."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":482.259,"end":482.499,"channel":0,"text":["Sad."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":484.902,"end":490.263,"channel":0,"text":["No, I think it's just there because I wanted a minimalist approach."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":491.104,"end":492.984,"channel":0,"text":["So I don't want that many things."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":493.064,"end":499.086,"channel":0,"text":["And also Feng Shui says that you shouldn't keep that many plants inside home because they take oxygen."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":499.626,"end":501.646,"channel":0,"text":["And I mean, it's not good for your health."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":502.346,"end":504.667,"channel":0,"text":["So yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":504.707,"end":511.849,"channel":0,"text":["The box is there just because I was unpacking one of the sculptures I sent for restoration because one of my clumsy friends came and"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":513.629,"end":515.251,"channel":0,"text":["They just drop it and then it broke."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":515.311,"end":521.218,"channel":0,"text":["So, but I need to ask the lady that she just removed this because yeah, that's not good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":521.718,"end":522.419,"channel":0,"text":["I'm sorry for that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":525.863,"end":526.303,"channel":0,"text":["The plates."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":529.467,"end":529.747,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":529.787,"end":531.79,"channel":0,"text":["I think they, they just forgot."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":533.447,"end":535.83,"channel":0,"text":["Yeah, these ladies come on."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":536.931,"end":538.513,"channel":0,"text":["Yeah, even the chairs are not aligned."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":538.794,"end":540.596,"channel":0,"text":["I am really, really into details."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":540.936,"end":545.221,"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.866,"end":549.126,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":551.87,"end":552.13,"channel":0,"text":["Uh huh."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":553.348,"end":571.461,"channel":0,"text":["yeah 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 because um it's it's"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":573.376,"end":574.798,"channel":0,"text":["quite unique piece."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":575.219,"end":590.4,"channel":0,"text":["I haven't seen it in other places and I think it gives a really nice touch to the room and also it's like the center or the focus of attention from the table because it gives like a central point and a focus."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":596.145,"end":600.932,"channel":0,"text":["My favorite item here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":601.593,"end":603.175,"channel":0,"text":["It's really hard to pick actually."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":605.559,"end":608.203,"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.984,"end":610.266,"channel":0,"text":["Yeah, I think that's my favorite."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":613.072,"end":615.574,"channel":0,"text":["At the least, the trash can."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":615.754,"end":616.996,"channel":0,"text":["That trash can is awful."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":618.417,"end":619.398,"channel":0,"text":["I really don't like it."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":619.818,"end":622.16,"channel":0,"text":["But I need to find a replacement for that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":622.921,"end":628.245,"channel":0,"text":["And 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.508,"channel":0,"text":["Because trash cans are not really well designed, actually."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":632.309,"end":634.751,"channel":0,"text":["And then it's really complicated, you know."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":635.812,"end":639.735,"channel":0,"text":["Even though it was really expensive, but it doesn't match the place quite well."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":642.618,"end":663.759,"channel":0,"text":["Which one this one it's I mean I keep it it's it's dearest to my heart because You know, it was my aunts and I had a really special 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."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":663.819,"end":666.041,"channel":0,"text":["So I really wanted to keep it and"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":675.027,"end":675.319,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":679.726,"end":682.888,"channel":0,"text":["It's because they are for different situations."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":682.948,"end":688.371,"channel":0,"text":["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.771,"end":692.433,"channel":0,"text":["And then whenever I have the lights on, then I don't keep the lamps."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":693.613,"end":695.394,"channel":0,"text":["It's more of a true situation thing."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":695.934,"end":700.977,"channel":0,"text":["But if I need to pick, I would pick my aunt's one, because, you know, that's really special."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":701.057,"end":702.177,"channel":0,"text":["Though I really like that one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":702.197,"end":705.039,"channel":0,"text":["I think it really matches with the room style."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":713.051,"end":714.695,"channel":0,"text":["It's a simple lump, yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":718.886,"end":719.086,"channel":0,"text":["Huh?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":719.326,"end":720.947,"channel":0,"text":["No, no, no, no, no, no, not really."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":721.387,"end":721.787,"channel":0,"text":["Not really."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":722.147,"end":726.349,"channel":0,"text":["But I might consider that because you know, in winter, the plants don't get enough light."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":727.449,"end":736.952,"channel":0,"text":["So yeah, but but yeah, I mean, sometimes, whenever it's not, I mean, there is not that much light, I take them out in the balcony."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":738.133,"end":740.534,"channel":0,"text":["Because it's nice for them."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":746.656,"end":746.876,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":750.29,"end":751.372,"channel":0,"text":["But I don't think so."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":751.432,"end":752.293,"channel":0,"text":["I think it looks nice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":752.474,"end":763.992,"channel":0,"text":["It's a nice division and it gives you a nice view of the... I mean, it's a focus point that then leads you to the green garden, yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":768.551,"end":772.373,"channel":0,"text":["No, I mean, 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.937,"channel":0,"text":["Because, yeah, I mean, they need a certain time to get used to the place."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":780.278,"end":781.198,"channel":0,"text":["So that might be the case."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":781.658,"end":785.28,"channel":0,"text":["But I am sure that it will actually recover."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":786.021,"end":786.301,"channel":0,"text":["Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":788.122,"end":788.422,"channel":0,"text":["Yes."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":791.684,"end":792.104,"channel":0,"text":["No worries."]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":"Whisper large-v2@whisper.fake, 2","created_ago":"0 minutes","completed_by":2,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-22T15:00:08.218070Z","updated_at":"2024-09-22T15:00:54.228735Z","draft_created_at":null,"lead_time":1.115,"import_id":null,"last_action":null,"task":117,"project":8,"updated_by":1,"parent_prediction":null,"parent_annotation":null,"last_created_by":null} {"id":213,"result":[{"value":{"start":11.812,"end":12.152,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":17.415,"end":17.755,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":19.917,"end":21.498,"channel":0,"text":["Yeah, it's a really nice place actually."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":23.118,"end":23.779,"channel":0,"text":["Oh, you don't like it?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":23.839,"end":24.079,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":25.04,"end":26.761,"channel":0,"text":["Um, what what do you don't like?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":29.782,"end":30.042,"channel":0,"text":["Mm hmm."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":35.703,"end":43.161,"channel":0,"text":["Yeah, I mean, I think it's a little bit unbalanced, but maybe if you balanced it more appropriately, then it will actually work."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":49.565,"end":60.313,"channel":0,"text":["I think, yeah, I think the actual problem, for example, with the one in the back, is that it doesn't show, actually, because it's black on a black background."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":60.813,"end":75.764,"channel":0,"text":["So you need to do something like you did with that one there, which is white, and then the lady, that is 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.284,"end":79.208,"channel":0,"text":["So the one in the back is actually not visible."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":80.369,"end":83.793,"channel":0,"text":["So I think you should move it to somewhere where you can actually..."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":86.329,"end":87.05,"channel":0,"text":["Yeah, of course."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":87.15,"end":89.152,"channel":0,"text":["Or you can paint it in a color, I think."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":89.632,"end":92.655,"channel":0,"text":["Because that could also add up to the situation."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":92.995,"end":98.6,"channel":0,"text":["Maybe you could have different colors that match perfectly the contrast with the pieces."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":99.101,"end":110.911,"channel":0,"text":["But then if you want to remove some of the pieces, I think the two pieces, the red one and the brown one there, those are the one down there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":112.332,"end":114.194,"channel":0,"text":["The red one and the one down there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":114.555,"end":119.58,"channel":0,"text":["It's on the last shelf on the middle one Yeah, the the brown one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":119.82,"end":134.555,"channel":0,"text":["It's like a base They 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 It's not working for the place I think"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":138.509,"end":153.964,"channel":0,"text":["yeah they are a little bit creepy but I mean it's it's a matter of choice if you don't like them you can actually remove them I think 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.466,"end":163.63,"channel":0,"text":["I think the orange one fits better with the rest of the composition than the green one."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":163.67,"end":167.213,"channel":0,"text":["It's a little bit sticking out and it's not that good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":168.734,"end":169.815,"channel":0,"text":["I think it's not that good."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":171.036,"end":171.296,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":172.497,"end":177.341,"channel":0,"text":["And then the paintings, I think having two of the same, it's not really a smart choice."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":178.061,"end":183.645,"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.486,"end":188.209,"channel":0,"text":["Because otherwise, I mean, in this space, you still have the TV here."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":188.269,"end":196.797,"channel":0,"text":["So, I mean, that paint is not even visible for... I mean, it's not really well appreciated there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":196.817,"end":200.52,"channel":0,"text":["I also don't like this lamp situation very much for me."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":200.821,"end":206.806,"channel":0,"text":["I think I would want to do maybe lamps or the lights above or the chandelier."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":210.828,"end":232.356,"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 I think this one you you might be able to keep it"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":233.616,"end":251.928,"channel":0,"text":["The chandelier is a little bit low 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":257.474,"end":258.214,"channel":0,"text":["Yes, you are right."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":258.374,"end":284.015,"channel":0,"text":["I mean that's yeah, then maybe you should just just remove it because because yeah No, that wouldn't look nice I think yeah, 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 I Mean"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":286.776,"end":297.021,"channel":0,"text":["Yeah, maybe if you remove them in a cross shape, so that one, that one, that one, and that one, then maybe it works."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":297.421,"end":299.843,"channel":0,"text":["But I wouldn't bet on that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":300.363,"end":309.988,"channel":0,"text":["Maybe you can also make a special lighting setup in which you can actually control buttons, and then you can actually control the lighting."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":310.108,"end":314.55,"channel":0,"text":["So I want to turn this one on this one, and then you can just keep on changing the setup."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":314.99,"end":323.217,"channel":0,"text":["But anyways, I would recommend you just to remove the full thing because I don't think it's providing anything to the room."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":329.382,"end":336.968,"channel":0,"text":["Yeah, I think that one might work where the black one is, that it's not being good right now."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":340.037,"end":351.535,"channel":0,"text":["Yeah, the gold one, there it would really work nicely because you have a black background and then with the gold one it's gonna look nice, I think."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":357.109,"end":373.347,"channel":0,"text":["that one I think you should place it in another cupboard maybe you can remove one of the doors of the cupboards and then you can actually put it there because I think 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":381.875,"end":384.176,"channel":0,"text":["So I would remove the one on the corner there."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":385.517,"end":387.098,"channel":0,"text":["Yeah, the armchair."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":388.538,"end":396.602,"channel":0,"text":["And also I feel that they are too low in height, because it's going to be really difficult to stand up."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":398.044,"end":416.082,"channel":0,"text":["yeah of course so then then i think it would be it would be nice to go for a higher um i mean yeah a whole set maybe you can actually have 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.523,"end":428.65,"channel":0,"text":["I think that that can work and also I mean the tables I think they are thought for this height of Couches, but if you go for a higher height, then you need higher table as well."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":432.812,"end":444.399,"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 to get a bigger size than this and"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":448.611,"end":451.353,"channel":0,"text":["Ah, I mean, yeah, you can make like cinema style."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":452.353,"end":457.116,"channel":0,"text":["But, 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.696,"end":463.719,"channel":0,"text":["But maybe you can actually Yeah, maybe you can put a projector directly and just work with that."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":470.703,"end":471.043,"channel":0,"text":["Chairs."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":473.548,"end":478.29,"channel":0,"text":["I then maybe you could pick a smaller table and then just with four chairs."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":479.911,"end":489.275,"channel":0,"text":["And in that in that case, 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":490.016,"end":491.576,"channel":0,"text":["And then our door family."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":491.936,"end":493.617,"channel":0,"text":["And then these ones."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":493.977,"end":498.639,"channel":0,"text":["Yeah, I think and I would pick a different color because this brownish celibate."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":498.92,"end":499.7,"channel":0,"text":["Yeah, dark."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":504.102,"end":532.81,"channel":0,"text":["your laptop if you actually pick this to be a smaller you could put it a little bit inside and then you can make you can maybe have a desk area here so you can actually work with the with the laptop I think that that would work because like working in the laptop in the table I don't think that's functional for you mm-hmm this one or that one"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":534.304,"end":536.245,"channel":0,"text":["The plant in the middle of the couches?"]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":537.646,"end":538.747,"channel":0,"text":["Yeah."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":539.047,"end":543.751,"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":545.072,"end":553.137,"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.498,"end":563.104,"channel":0,"text":["So yeah, I would put it like next to the door and really keep it there in the mornings because I think it really needs some light."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":564.025,"end":568.83,"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.395,"end":573.635,"channel":0,"text":["Okay."]},"from_name":"transcription","to_name":"audio","type":"textarea"},{"value":{"start":576.458,"end":576.939,"channel":0,"text":["You're welcome."]},"from_name":"transcription","to_name":"audio","type":"textarea"}],"created_username":"Whisper large-v2@whisper.fake, 2","created_ago":"0 minutes","completed_by":2,"was_cancelled":false,"ground_truth":false,"created_at":"2024-09-22T15:00:11.346163Z","updated_at":"2024-09-22T15:00:54.347666Z","draft_created_at":null,"lead_time":1.652,"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
<View>
<Labels name="labels" toName="audio">
<Label value="Speech" background="#389E0D"/>
<Label value="Noise" background="#AD8B00"/>
<Label value="Breath" background="#FFA39E"/>
<Label value="Laughter" background="#D4380D"/>
<Label value="Cross-talk" background="#FFC069"/>
</Labels>
<Audio name="audio" value="$audio"/>
<TextArea name="transcription" toName="audio" rows="2" editable="true" perRegion="true" required="true"/>
</View>