diff --git a/ege-checker/SKILL.md b/ege-checker/SKILL.md index be8d1a2..2643c19 100644 --- a/ege-checker/SKILL.md +++ b/ege-checker/SKILL.md @@ -136,17 +136,8 @@ with open(tmp_path, "wb") as f: **Шаг 2 — Запустить recognition.py** -Через subprocess (рекомендуется): ```bash -python3 ~/.zeroclaw/recognition.py --output json -``` - -Через прямой импорт: -```python -import sys -sys.path.insert(0, os.path.expanduser("~/.zeroclaw")) -from recognition import process_audio -transcript, answers = process_audio(tmp_path, model_size="medium", verbose=False) +python3 ~/.zeroclaw/workspace/skills/ege-checker/recognition.py --output transcript ``` **Шаг 3 — Удалить временный файл** diff --git a/recognition.py b/ege-checker/recognition.py similarity index 100% rename from recognition.py rename to ege-checker/recognition.py diff --git a/tests/english-tester.py b/tests/english-tester.py new file mode 100644 index 0000000..ce334e2 --- /dev/null +++ b/tests/english-tester.py @@ -0,0 +1,128 @@ +#!/usr/bin/env python3 +import subprocess +import json +import os +import sys +from pathlib import Path + + +def transcribe_file( + file_path: Path, script_path: Path, timeout_seconds: int = 60 +) -> str: + """ + Вызывает recognition.py для одного файла, возвращает транскрипцию. + """ + cmd = ["python3", str(script_path), "--output", "transcript", str(file_path)] + + try: + result = subprocess.run( + cmd, + capture_output=True, + text=True, + check=True, + encoding="utf-8", + timeout=timeout_seconds, # Добавлен таймаут + ) + # Предполагаем, что скрипт выводит транскрипцию в stdout + transcript = result.stdout.strip() + if not transcript: + print(f"Предупреждение: пустая транскрипция для {file_path}") + return transcript + except subprocess.TimeoutExpired: + error_msg = f"TIMEOUT: превышен лимит в {timeout_seconds} секунд" + print(f"Ошибка: {error_msg} для {file_path}") + return f"ERROR: {error_msg}" + except subprocess.CalledProcessError as e: + print(f"Ошибка при обработке {file_path}: {e}") + print(f"stderr: {e.stderr}") + return f"ERROR: {e.stderr}" + + +def main(): + # Пути + base_dir = Path( + r"/mnt/c/proga/projects/ege-skill-dev/.scans/Сложные работы_Английский_язык_УЧ_часть_1/" + ) + regions = ["1-Республика_Адыгея", "2-Республика_Башкортостан"] + recognizer_script = Path.home() / "zeroclaw-bot" / "recognition.py" + + # Таймаут на транскрипцию одного файла (в секундах) + TIMEOUT_PER_FILE = 120 + + # Проверки + if not base_dir.exists(): + print(f"Ошибка: директория {base_dir} не найдена") + sys.exit(1) + + if not recognizer_script.exists(): + print(f"Ошибка: скрипт {recognizer_script} не найден") + sys.exit(1) + + # Собираем все .ogg файлы, кроме тех, где озвузичвается код участника + ogg_files = [] + for region in regions: + ogg_files.extend( + [ + file + for i, file in enumerate(list(Path(f"{base_dir}/{region}/").rglob("*.ogg"))) + if i % 5 != 0 + ] + ) + + print(f"Найдено {len(ogg_files)} .ogg файлов") + + results = [] + + for idx, ogg_path in enumerate(ogg_files, 1): + print(f"\n[{idx}/{len(ogg_files)}] Обработка: {ogg_path}") + + # Структура: .../{region}/{fio}/{file} + region = ogg_path.parent.parent.name + fio = ogg_path.parent.name + + print(f" Регион: {region}") + print(f" ФИО: {fio}") + print( + f" Транскрибирование (таймаут: {TIMEOUT_PER_FILE} сек)...", + end=" ", + flush=True, + ) + + transcript = transcribe_file(ogg_path, recognizer_script, TIMEOUT_PER_FILE) + + print("готово") + # Показываем первые 100 символов транскрипции, если она есть + preview = transcript[:100].replace("\n", " ") + if preview and not transcript.startswith("ERROR:"): + print(f" Транскрипция (начало): {preview}...") + elif transcript.startswith("ERROR:"): + print(f" {transcript}") + + results.append( + { + "region": region, + "fio": fio, + "transcript": transcript, + "file_path": str(ogg_path), + } + ) + + # Сохраняем JSON + output_file = Path.cwd() / "transcriptions.json" + with open(output_file, "w", encoding="utf-8") as f: + json.dump(results, f, ensure_ascii=False, indent=2) + + # Статистика + total_files = len(results) + error_files = sum(1 for r in results if r["transcript"].startswith("ERROR:")) + timeout_files = sum(1 for r in results if "TIMEOUT" in r["transcript"]) + success_files = total_files - error_files + + print(f"\n✅ Готово! Результаты сохранены в {output_file}") + print(f"Всего обработано файлов: {total_files}") + print(f" - Успешно: {success_files}") + print(f" - Ошибок: {error_files} (из них timeout: {timeout_files})") + + +if __name__ == "__main__": + main() diff --git a/tests/transcriptions.json b/tests/transcriptions.json new file mode 100644 index 0000000..c31fcc4 --- /dev/null +++ b/tests/transcriptions.json @@ -0,0 +1,194 @@ +[ + { + "region": "1-Республика_Адыгея", + "fio": "Кузьминова_7921829566", + "transcript": "It usually snows more in countries that are in the North. For instance, Japan, Russia or some parts of the USA may have hard snowfalls. Mountains are also the places which have a lot of snow. This is especially true for such countries as China. At the same time, there are tropical countries which hardly see any snow. For some countries snow is one of the main reasons why tourists come here. It's not every place in the world has snowfalls. People from hard countries come to snow-covered places in order to live the experience of seeing, touching and feeling this natural phenomenon. You may think it's wonderful to have a lot of snow, but it's not always the case. A heavy snowfall can paralyze the life of a city or a country. If snows is rare in a certain location, people there are not used to it and find it hard to commute or even go outside.", + "file_path": "/mnt/c/proga/projects/ege-skill-dev/.scans/Сложные работы_Английский_язык_УЧ_часть_1/1-Республика_Адыгея/Кузьминова_7921829566/audio_497920_1.ogg" + }, + { + "region": "1-Республика_Адыгея", + "fio": "Кузьминова_7921829566", + "transcript": "How much variety of jobs do you have? What is the minimum age for a part-time job? What is required number of hours per week? What is the pay per hour?", + "file_path": "/mnt/c/proga/projects/ege-skill-dev/.scans/Сложные работы_Английский_язык_УЧ_часть_1/1-Республика_Адыгея/Кузьминова_7921829566/audio_497920_2.ogg" + }, + { + "region": "1-Республика_Адыгея", + "fio": "Кузьминова_7921829566", + "transcript": "Usually I spend my weekend with my family and my friends. We are going to the parks or rivers and lakes or forests to walk with them. If it is among my friends, it's walking in the parks and going to the stadium. I think it's really interesting spending free time for my coming weekend. Me, my brother and our friends will go to the river and go to swim then. When the weekend is over, I feel sad because my weekend is really funny and I feel happy when I have a weekend. I would like to spend more time outside with my friends.", + "file_path": "/mnt/c/proga/projects/ege-skill-dev/.scans/Сложные работы_Английский_язык_УЧ_часть_1/1-Республика_Адыгея/Кузьминова_7921829566/audio_497920_3.ogg" + }, + { + "region": "1-Республика_Адыгея", + "fio": "Кузьминова_7921829566", + "transcript": "Hi there! I have found two photos for our school project on doing homework. I'd like to tell you about them. In the first picture one can see a girl. She is doing homework. There are a girl with her mom that is doing homework together in the second picture. Talking about the differences, the key difference is in the first picture girl doing homework alone, while in the second picture girl doing homework with her parents. I think these photos are perfect for our project because they illustrate different kinds of doing homework. I believe that the two types of doing homework have their advantages and disadvantages. As for the advantages, doing homework alone can help you for better concentration. What about doing homework with somebody you can't do it. We'll discuss about the disadvantages. As for doing homework alone, I can say that these disadvantages are the risk of getting worth your attention and doing incorrect answers. One downside of doing homework together is that you can have a fear of taking incorrect answers. Overall, any kind of doing homework is beneficial for our education. I'd prefer doing homework alone because that way I have a lot of concentration of my job. That's all I wanted to tell you. Bye!", + "file_path": "/mnt/c/proga/projects/ege-skill-dev/.scans/Сложные работы_Английский_язык_УЧ_часть_1/1-Республика_Адыгея/Кузьминова_7921829566/audio_497920_4.ogg" + }, + { + "region": "1-Республика_Адыгея", + "fio": "Штельмах_7924913136", + "transcript": "It usually snows more in countries that are in the north. For instance Japan, Russia or some parts of the USA may have large snowfalls. Mountains are also the place which have a lot of snow. It is especially true for such countries as China. At the same time there are tropical countries which hardly see any snow. For some countries snow is one of the main reasons why tourists come there. It is not every place in the world has snowfalls. People from hot countries come to snow-covered places in order to live the experience of seeing, touching and feeling this natural phenomenon. You may think it is wonderful to have a lot of snow, but it is not always the case. Heavy snow can paralyze the life of a city or a country. If snow is rare in a certain location, people are not used to it and find it hard to commute or even go outside.", + "file_path": "/mnt/c/proga/projects/ege-skill-dev/.scans/Сложные работы_Английский_язык_УЧ_часть_1/1-Республика_Адыгея/Штельмах_7924913136/audio_497976_1.ogg" + }, + { + "region": "1-Республика_Адыгея", + "fio": "Штельмах_7924913136", + "transcript": "What variety of jobs you have to start there, working, pay as much as you pay per hour.", + "file_path": "/mnt/c/proga/projects/ege-skill-dev/.scans/Сложные работы_Английский_язык_УЧ_часть_1/1-Республика_Адыгея/Штельмах_7924913136/audio_497976_2.ogg" + }, + { + "region": "1-Республика_Адыгея", + "fio": "Штельмах_7924913136", + "transcript": "I usually spend my weekend with my friends. We usually go to the cinema or play computer games. It's sport. I like to do some exercise in the gym. My plans at the weekend is go to trip to the mountain. We have planned this with my friends. I feel so bad because when it's over, I feel so bad. But sometimes I feel good because I can go to the school. I like to change my daily routine. I want to do more homework. It's important for me.", + "file_path": "/mnt/c/proga/projects/ege-skill-dev/.scans/Сложные работы_Английский_язык_УЧ_часть_1/1-Республика_Адыгея/Штельмах_7924913136/audio_497976_3.ogg" + }, + { + "region": "1-Республика_Адыгея", + "fio": "Штельмах_7924913136", + "transcript": "Hi Peter, I have found two photos for our school project doing homework and I would like to tell you about them. Let me describe them for you. One picture depicts a girl doing homework, in the other picture girl doing her homework with mom. However, these photos have some differences. The key difference is that the first picture shows girl doing her homework alone, while in the other picture girl doing her homework with mom. The picture is perfectly suited our project because both of them illustrate doing homework theme of our project. I believe that both photos have advantages and disadvantages. Talking about advantages of the first photo is she can improve her cognitive skills when she is doing her homework alone. Also the best thing in the second picture is mom can help her with her homework. As for disadvantages of the first picture, it would be hard for her. There is a major drawback of the second picture, she cannot upgrade her cognitive skills. Personally, I would prefer the first version of doing homework alone because it's better for my cognitive skills. That's all for now, that's all for now. I'll be waiting for your opinion on the photos.", + "file_path": "/mnt/c/proga/projects/ege-skill-dev/.scans/Сложные работы_Английский_язык_УЧ_часть_1/1-Республика_Адыгея/Штельмах_7924913136/audio_497976_4.ogg" + }, + { + "region": "2-Республика_Башкортостан", + "fio": "Авсахова_8020280717", + "transcript": "Rain is an important part of the water cycle which never stops on our planet. Water is delivered to the ground by rains. It retains as clouds in the sky and falls over through the land. Actually, this is one of the reasons why the earth is cold in winter and warm in summer. Water escapes into the atmosphere and turns into clouds. Rain is useful for us in many different ways. Firstly, it waters the earth and refills streams, rivers, lakes, and oceans. The water in the oceans is home to millions of sea creatures, and the water in the sea streams, rivers, and lakes is home to freshwater fish and other water animals. Secondly, rain provides the water trees and other plants need. Rain also gives wild animals the water they need to drink. Finally, people love rain water. It makes the air fresh and clean.", + "file_path": "/mnt/c/proga/projects/ege-skill-dev/.scans/Сложные работы_Английский_язык_УЧ_часть_1/2-Республика_Башкортостан/Авсахова_8020280717/audio_704902_1.ogg" + }, + { + "region": "2-Республика_Башкортостан", + "fio": "Авсахова_8020280717", + "transcript": "Where is location? What cost of delivery? Where special location decorations? Where is the potted flowers?", + "file_path": "/mnt/c/proga/projects/ege-skill-dev/.scans/Сложные работы_Английский_язык_УЧ_часть_1/2-Республика_Башкортостан/Авсахова_8020280717/audio_704902_2.ogg" + }, + { + "region": "2-Республика_Башкортостан", + "fio": "Авсахова_8020280717", + "transcript": "In my daily life, I use my mobile phone and television because I chat with my friends and call my mom. The digital technology that makes my life easier is my telephone because I chat with my friends, no more information. The best features on MedKindness is television. In my opinion, the famous Russian list is Mikhail Vasilyevich Lomonosov, the Russian scientist who knows a scientist like math and he is so curious. I think I don't see my life without my mobile phone because it keeps more information for me and I chat with my friends and call my mom. It improves my life and I don't see the life without it.", + "file_path": "/mnt/c/proga/projects/ege-skill-dev/.scans/Сложные работы_Английский_язык_УЧ_часть_1/2-Республика_Башкортостан/Авсахова_8020280717/audio_704902_3.ogg" + }, + { + "region": "2-Республика_Башкортостан", + "fio": "Авсахова_8020280717", + "transcript": "Hi Kate, I have an hour project for you in two pictures we have seen. In the first pictures we see girls who play the computer games and she liked it because the computer game have a brain side and improve your brain explanation. In the second photo we have seen girls and their mom who play the computer games and she liked it because they have a big chest. In disadvantages, however, I can say advantages or disadvantages. In advantages, first picture, we can see that girl playing and improve your skills in computer game. In two pictures we have seen the brain-heart game, but disadvantages our pictures. In the first pictures, girls save more time for that and in the second pictures, she will be angry about that your game is disappointed. In two disadvantages, what the most time kills because she said them. I prefer picture number one because the girl plays the computer game and she likes to play the computer game. In the second pictures, girls save more time for that and in the third pictures, girls save more time for that and she will be angry about that your game is disappointed. I love computer game and what about them. I wait your opinion.", + "file_path": "/mnt/c/proga/projects/ege-skill-dev/.scans/Сложные работы_Английский_язык_УЧ_часть_1/2-Республика_Башкортостан/Авсахова_8020280717/audio_704902_4.ogg" + }, + { + "region": "2-Республика_Башкортостан", + "fio": "Иркабаев_8021293748", + "transcript": "Rain is an important part of the water cycle which never stops on our planet. Water is delivered to the ground by rains. It is retained as clouds in the sky and falls over and through the land. Actually this is one of the reasons why the earth is cold in winter and warm in summer. Water escapes into the atmosphere and turns into clouds. Rain is useful for us in many different ways. Firstly, it waters the earth and refills streams, rivers, lakes and oceans. The water in the oceans is home to millions of sea creatures and the water in the streams, rivers and lakes is home to freshwater fish and other water animals. Secondly, rain provides the water trees and other plants need. Rain also gives wild animals the water they need to drink. Finally, people love rainy weather. It makes the air fresh and clean.", + "file_path": "/mnt/c/proga/projects/ege-skill-dev/.scans/Сложные работы_Английский_язык_УЧ_часть_1/2-Республика_Башкортостан/Иркабаев_8021293748/audio_704486_1.ogg" + }, + { + "region": "2-Республика_Башкортостан", + "fio": "Иркабаев_8021293748", + "transcript": "Where is your flower shop located? What is the cost of delivery? Are there any special occasion decorations? Are potted flowers available?", + "file_path": "/mnt/c/proga/projects/ege-skill-dev/.scans/Сложные работы_Английский_язык_УЧ_часть_1/2-Республика_Башкортостан/Иркабаев_8021293748/audio_704486_2.ogg" + }, + { + "region": "2-Республика_Башкортостан", + "fio": "Иркабаев_8021293748", + "transcript": "In my daily life I usually use such gadgets as smartphone, TV and personal computer. Modern technologies makes our life easier in that way that you don't need to go to the library to read some necessary information. It's more convenient now to go shopping or surfing the net than before. Well, I think the best invention of mankind is Internet because it allows us to do basically everything. You basically can't imagine our everyday life without Internet, without the Internet. Well, there is famous Russian inventor of a radio. His name is Popov. He invented radio before anyone else, as far as I know. Well, I think I could live without smartphone for a month because it's not that hard to avoid all these benefits that smartphone brings. But I have to admit it would be quite difficult.", + "file_path": "/mnt/c/proga/projects/ege-skill-dev/.scans/Сложные работы_Английский_язык_УЧ_часть_1/2-Республика_Башкортостан/Иркабаев_8021293748/audio_704486_3.ogg" + }, + { + "region": "2-Республика_Башкортостан", + "fio": "Иркабаев_8021293748", + "transcript": "Hi John, how are you? I've just found two pictures that are suitable for our school project. They're games people like. Let me quickly describe them. One of the pictures shows a girl playing computer games. The other picture shows a mother with her daughter playing chess. The main difference between these two photos is that it's two different types of games. As for the advantages of playing computer games, I would like to say that it develops quick reaction. Also, it develops your social skills because you have to communicate with your teammates in the game. As for the advantages of checkmates, I would like to say that it develops your logical thinking. Moreover, it allows you to analyze, it teaches you to analyze situation and make right decisions very fast. As for disadvantages, however, there are also disadvantages. Computer gaming actually makes your eyesight, makes your mental health worse. Also, it's bad for your eyesight. Checkmates also has some withdrawals, such as badly influence your physical condition. Your posture can get worse and you feel worse about your physical condition. Personally, I would prefer computer gaming because I'm keen on games and other stuff because I like to play games with my friends. That's all for now. Keep in touch. Bye-bye.", + "file_path": "/mnt/c/proga/projects/ege-skill-dev/.scans/Сложные работы_Английский_язык_УЧ_часть_1/2-Республика_Башкортостан/Иркабаев_8021293748/audio_704486_4.ogg" + }, + { + "region": "2-Республика_Башкортостан", + "fio": "Панова_8021392635", + "transcript": "Rain is an important part of the water cycle which never stops in our planet. Water is delivered to the ground by rains. It is retained as clouds in the sky and falls over and through the land. Actually this is one of the reasons why the earth is cold in winter and warm in summer. Water escapes into the atmosphere and turns into clouds. Rain is useful for us in many different ways. Firstly, it waters the earth and refills streams, rivers, lakes and oceans. The water in the oceans is home to millions of sea creatures and the water in the streams. Rivers and lakes is home to freshwater fish and other water animals. Secondly, rain provides the water trees and other plants need. Rain also gives wild animals the water they need to drink. Finally, people love rainy weather. It makes the air fresh and clean.", + "file_path": "/mnt/c/proga/projects/ege-skill-dev/.scans/Сложные работы_Английский_язык_УЧ_часть_1/2-Республика_Башкортостан/Панова_8021392635/audio_705315_1.ogg" + }, + { + "region": "2-Республика_Башкортостан", + "fio": "Панова_8021392635", + "transcript": "What is the location of the flower store? Stop delivering. We have special occasion for decorations. Have any potted flowers?", + "file_path": "/mnt/c/proga/projects/ege-skill-dev/.scans/Сложные работы_Английский_язык_УЧ_часть_1/2-Республика_Башкортостан/Панова_8021392635/audio_705315_2.ogg" + }, + { + "region": "2-Республика_Башкортостан", + "fio": "Панова_8021392635", + "transcript": "In my daily life, I use phone. Also, I usually use TV. Technology people teaching online also they can also create a to live without mobile phone for month that's all because or the net a bit serves in it", + "file_path": "/mnt/c/proga/projects/ege-skill-dev/.scans/Сложные работы_Английский_язык_УЧ_часть_1/2-Республика_Башкортостан/Панова_8021392635/audio_705315_3.ogg" + }, + { + "region": "2-Республика_Башкортостан", + "fio": "Панова_8021392635", + "transcript": "I found two photos for our project, the games, people like, and I'd like to tell you about them. Let me describe them for you. On picture shows a girl who is playing on the computer. In the other picture there are mom and there is a woman with a daughter who are playing in the chess. However, these photos have some differences. The key difference is that the first photo depicts the video games, while in the second photo there is intellect board games. These pictures perfectly suit our project because both of them illustrate types of games. I believe that both types of games presented in the pictures are advantages and disadvantages. Talking about the advantages, the best thing about video games is that it's more funny. At the same time, board games are great because they develop your thinking. As for the disadvantages of video games, one of them is that it's more expensive. Also, there is a major drawback with games that can be boring. I would prefer video games because that's all for now. I'll be waiting for your opinion on the photos.", + "file_path": "/mnt/c/proga/projects/ege-skill-dev/.scans/Сложные работы_Английский_язык_УЧ_часть_1/2-Республика_Башкортостан/Панова_8021392635/audio_705315_4.ogg" + }, + { + "region": "2-Республика_Башкортостан", + "fio": "Пешкова_8021424674", + "transcript": "Rain is an important part of the water cycle which never stops on our planet. Water is delivered to the ground by rains. It is retained as clouds in the sky and falls over and through the land. Actually, this is one of the reasons why the earth is cold in winter and warm in summer. Water escapes into the atmosphere and turns into clouds. Rain is useful for us in many different ways. Firstly, it waters the earth and refills streams, rivers, lakes and oceans. The water in the oceans is home to millions of sea creatures and the water in the streams, rivers and lakes is home to freshwater fish and other water animals. Secondly, rain provides the water trees and other plants need. Rain also gives wild animals the water they need to drink. Finally, people love rainy weather. It makes the air fresh and clean.", + "file_path": "/mnt/c/proga/projects/ege-skill-dev/.scans/Сложные работы_Английский_язык_УЧ_часть_1/2-Республика_Башкортостан/Пешкова_8021424674/audio_704956_1.ogg" + }, + { + "region": "2-Республика_Башкортостан", + "fio": "Пешкова_8021424674", + "transcript": "What is the location of your flowers shop? What is the cost of delivery? Do you provide any special occasion decorations for flowers? What potted flowers do you have?", + "file_path": "/mnt/c/proga/projects/ege-skill-dev/.scans/Сложные работы_Английский_язык_УЧ_часть_1/2-Республика_Башкортостан/Пешкова_8021424674/audio_704956_2.ogg" + }, + { + "region": "2-Республика_Башкортостан", + "fio": "Пешкова_8021424674", + "transcript": "Personally, in my daily life, I use phone, notebook and computer. Also, I use headphones and I find it very useful. I think digital technologies make our life easier in so many ways. For example, we can find whatever we want in any time just using the Internet. Personally, I think that the best invention of the kind thing is our headphones. They help to listen to music anytime and not bother anyone with your own music. I know famous Russian inventor Lomonosov. He made a huge impact on the science of the whole world. He invented telescope. Unfortunately, I would say that I would not be able to live without mobile phone for a month. I think that because I need to listen to music everyday and mobile phone gives me an ability to do it.", + "file_path": "/mnt/c/proga/projects/ege-skill-dev/.scans/Сложные работы_Английский_язык_УЧ_часть_1/2-Республика_Башкортостан/Пешкова_8021424674/audio_704956_3.ogg" + }, + { + "region": "2-Республика_Башкортостан", + "fio": "Пешкова_8021424674", + "transcript": "Hey Kate, I've just found two pictures relatable for our project, the games people like, but for some technical issues, I can't send them to you right now. So let me describe them. Both pictures are representing the types of games. One picture shows a girl playing her computer with her headphones on. The other picture shows two women playing chess. The main difference between these pictures is that one picture shows digital type of games and the other picture shows old-fashioned type of games. Both types of games have their advantages. For example, digital games are popular among teenagers and there you can find new friends. As for the old-fashioned games, they make our mind stronger. Meanwhile, both types of games have disadvantages too. For example, digital games can be uncontrolled, especially among children, and you can have an addiction from them. As for the old-fashioned games, for some people they can be boring, especially for children. As for me, I prefer old-fashioned games because they remind me of my childhood. So what do you think about these pictures? Should we take them? Tell me later. Bye-bye.", + "file_path": "/mnt/c/proga/projects/ege-skill-dev/.scans/Сложные работы_Английский_язык_УЧ_часть_1/2-Республика_Башкортостан/Пешкова_8021424674/audio_704956_4.ogg" + }, + { + "region": "2-Республика_Башкортостан", + "fio": "Шафикова_8020277747", + "transcript": "Rain is an important part of the water cycle which never stops on our planet. Water is delivered to the ground by rains. It is retained as clouds in the sky and falls over through the land. Actually, this is one of the reasons why the earth is cold in winter and warm in summer. Water escapes into the atmosphere and turns into clouds. Rain is useful for us in many different ways. Firstly, it waders the earth and refills streams, rivers, lakes and oceans. The water in the oceans is home to millions of sea creatures and the water in the streams, rivers and lakes is home to freshwater fish and other water animals. Secondly, rain provides the water trees and other plants need. Rain also gives wild animals the water they need to drink. Finally, people love rainy weather. It makes the air fresh and clean.", + "file_path": "/mnt/c/proga/projects/ege-skill-dev/.scans/Сложные работы_Английский_язык_УЧ_часть_1/2-Республика_Башкортостан/Шафикова_8020277747/audio_704661_1.ogg" + }, + { + "region": "2-Республика_Башкортостан", + "fio": "Шафикова_8020277747", + "transcript": "Where is your flower shop located? How much does the delivery cost? Do you offer any special occasion decorations? What is the flower pot?", + "file_path": "/mnt/c/proga/projects/ege-skill-dev/.scans/Сложные работы_Английский_язык_УЧ_часть_1/2-Республика_Башкортостан/Шафикова_8020277747/audio_704661_2.ogg" + }, + { + "region": "2-Республика_Башкортостан", + "fio": "Шафикова_8020277747", + "transcript": "I use smartphone and laptop every day. I think that these gadgets are very important for people, because these digital gadgets makes life easier. In my opinion, Internet is the largest source of information. That's why people can find a lot of information very fast and easy. Besides, I think that with smartphone, I think that with smartphone, I think that with smartphone communicate with relatives and friends very easy. I think that the best inventions of mankind is car, because car makes our life much easier. I think that because cars can help people to go in other places very fast and in convenient conditions. I think that Pavel Durov is the famous Russian inventor. Pavel Durov is the founder of Telegram and other messaging platforms. I think that Pavel Durov really makes our life easier, because he is a great man. I think I will not live without smartphone a month. I think that because smartphone is very useful thing for me. I use my smartphone a lot of days, a lot of hours. I use them to chatting with my friends and relatives and to find information. That's why I think that smartphone is very important for me.", + "file_path": "/mnt/c/proga/projects/ege-skill-dev/.scans/Сложные работы_Английский_язык_УЧ_часть_1/2-Республика_Башкортостан/Шафикова_8020277747/audio_704661_3.ogg" + }, + { + "region": "2-Республика_Башкортостан", + "fio": "Шафикова_8020277747", + "transcript": "Hi Vasya, I've just found two photos for our project, the games people like. I have found two photos for... Hi Vasya, I've just found two photos for our project, the games people like. I have found two photos for our project and I'd like to tell you about them and share my ideas. The first picture depicts a young lady who is playing computer games. The other one depicts two young girls who are playing chess. In my opinion, these photos are perfectly suitable for our project because they show two types of games, namely playing computer games and playing intellectual games. I think that both types of games have their advantages. For example, playing computer games can be more interesting and funnier than other types of games. As for playing intellectual games, I think that these games can improve their cleverness and strategic skills. Speaking of disadvantages, I reckon that playing computer games can be harmful for kids' health. As for playing intellectual games, I think that playing intellectual games can be boring for kids. As for me, I prefer playing computer games because it is more interesting for me and I'd like to play computer games with my friends. That's all for now. I hope you like the photos and my ideas.", + "file_path": "/mnt/c/proga/projects/ege-skill-dev/.scans/Сложные работы_Английский_язык_УЧ_часть_1/2-Республика_Башкортостан/Шафикова_8020277747/audio_704661_4.ogg" + }, + { + "region": "2-Республика_Башкортостан", + "fio": "Яппаров_8020266903", + "transcript": "Rain is an important part of the water cycle, which never stops on our planet. Water is delivered to the ground by rains. It is retained as clouds in the sky and falls over and through the land. Actually, this is one of the reasons why the Earth is cold in wind and warm in summer. Water escapes into the atmosphere and turns into clouds. Rain is useful for us in many different ways. Firstly, it waters the Earth and refills streams, rivers, lakes and oceans. The water in the oceans is home to millions of sea creatures. And the water in the streams, rivers and lakes is home to fresh water fish and other water animals. Secondly, rain provides the water trees and other planets need. Rain also gives wild animals the water they need to drink. Finally, people love rainy weather. It makes the air fresh and clean.", + "file_path": "/mnt/c/proga/projects/ege-skill-dev/.scans/Сложные работы_Английский_язык_УЧ_часть_1/2-Республика_Башкортостан/Яппаров_8020266903/audio_705376_1.ogg" + }, + { + "region": "2-Республика_Башкортостан", + "fio": "Яппаров_8020266903", + "transcript": "Where the flower shop is located? How much does cost delivery? Do you provide any special occasion decorations? Do you have potted flowers?", + "file_path": "/mnt/c/proga/projects/ege-skill-dev/.scans/Сложные работы_Английский_язык_УЧ_часть_1/2-Республика_Башкортостан/Яппаров_8020266903/audio_705376_2.ogg" + }, + { + "region": "2-Республика_Башкортостан", + "fio": "Яппаров_8020266903", + "transcript": "I usually use mobile phone for any activity. Also, I often times use computer for making projects or making my homework. I think digital gadgets... It makes easy to search for exact information. Also, it helps us to calculate many things. The best invention is computer. I think computer is the best invention of human. It provided for humanity... Yes, it provided for humanity to... Because it help... I know Mendeleev. He invented a periodic table of chemical elements. I think I wouldn't be able to live a month without a mobile phone. It helps me to communicate with my friends. It helps me to communicate with my friends.", + "file_path": "/mnt/c/proga/projects/ege-skill-dev/.scans/Сложные работы_Английский_язык_УЧ_часть_1/2-Республика_Башкортостан/Яппаров_8020266903/audio_705376_3.ogg" + }, + { + "region": "2-Республика_Башкортостан", + "fio": "Яппаров_8020266903", + "transcript": "Hello John, I have just found two photos from our school project, the games people like, and I'd like to describe them and share my ideas. In the first picture you can see a girl playing a computer game. She's wearing headphones and she looks very confident. In the second picture you can see a daughter playing chess with her mother. They look happy and they enjoy the game. Both pictures depict two different types of games. In the first picture it is computer games, in the second picture it is chess. These types of games have their own advantages. Computer games are usually very interesting to play, and also it helps children to grow their mind. Chess helps people to train their brain, and it is easy to play it in any place where you want. They have their own advantages. For example, computer games can hurt your eyes if you use the computer for a long period of time. Also, you can't take the computer in the park or in the nature. Chess has a drawback too. The rules are hard and difficult to follow.", + "file_path": "/mnt/c/proga/projects/ege-skill-dev/.scans/Сложные работы_Английский_язык_УЧ_часть_1/2-Республика_Башкортостан/Яппаров_8020266903/audio_705376_4.ogg" + } +] \ No newline at end of file