diff --git a/src/assets/img/projects/video_editor.png b/src/assets/img/projects/video_editor.png new file mode 100644 index 0000000..d4a19e9 Binary files /dev/null and b/src/assets/img/projects/video_editor.png differ diff --git a/src/assets/img/video_editor.png b/src/assets/img/video_sample.png similarity index 100% rename from src/assets/img/video_editor.png rename to src/assets/img/video_sample.png diff --git a/src/assets/localization/en/localization.json b/src/assets/localization/en/localization.json index bb6f891..d0c441f 100644 --- a/src/assets/localization/en/localization.json +++ b/src/assets/localization/en/localization.json @@ -149,7 +149,13 @@ "text2": "Those experiments are filmed using a normal and a slow motion camera. The resulting files are then passed to a small program I made in order to work on the frames." }, "software": { - "title": "Frames editing software" + "title": "Frames editing software", + "text": "I created a simple software that allowed researchers to edit quickly the experiments videos. The program was basically a GUI over ffmpeg, allowing users to alter the temporality by reversing or randomizing frames order, and recreating the edited file.", + "text2": "Here is an example of a frame coming from some files we worked on. Once assembled into a video file again, we were able to conduct some experiment about the perception of temporal seriality using the naked eye." + }, + "data_recovery": { + "title": "Data recovery", + "text": "Unfortunately, at some point, the laptop containing a part of the research data broke, and I did by best to recover the lost files. Working tirelessly, I tried a lot of different recovery tools, until realizing the hard drive is encrypted using Microsoft's Bitlocker. This security is enabled by default on a large part of new laptops using Windows, and nobody in the team ever heard about it. Without any recovery key (not saved in Microsoft account !), the files were sadly definitively lost. This is the reason why I removed Windows from all my computers, and started using Linux daily." } } } diff --git a/src/components/home/projects.vue b/src/components/home/projects.vue index 8aeba69..c311e82 100644 --- a/src/components/home/projects.vue +++ b/src/components/home/projects.vue @@ -38,7 +38,7 @@ import disblockSvg from "@/assets/svg/projects/disblock.svg"; import portfolioImg from "@/assets/img/portfolio.png"; import semanticSegmentationImg from '@/assets/img/semantic_segmentation.png'; - import videoEditorImg from '@/assets/img/video_editor.png'; + import videoEditorImg from '@/assets/img/video_sample.png'; import tradingAiImg from '@/assets/img/trading_ai.png'; import {useI18n} from 'vue-i18n'; diff --git a/src/views/projects/videoEditorView.vue b/src/views/projects/videoEditorView.vue index 95753fb..490f21b 100644 --- a/src/views/projects/videoEditorView.vue +++ b/src/views/projects/videoEditorView.vue @@ -20,6 +20,18 @@

{{ $t("projects.video_editor.perception.text2") }}

{{ $t("projects.video_editor.software.title") }}

+ +

{{ $t("projects.video_editor.software.text") }}

+ +
+ +

{{ $t("projects.video_editor.software.text2") }}

+ +
+ +

{{ $t("projects.video_editor.data_recovery.title") }}

+

{{ $t("projects.video_editor.data_recovery.text") }}

+ @@ -27,7 +39,8 @@ import Header from '@/components/header.vue'; import doubleRowHolder from '@/components/doubleRowHolder.vue'; - import videoEditorImg from '@/assets/img/video_editor.png'; + import videoSampleImg from '@/assets/img/video_sample.png'; + import videoEditorImg from '@/assets/img/projects/video_editor.png'; import fukushimaKosenImg from '@/assets/img/projects/fukushima_kosen.jpg'; import fukushimaKosenExp1Img from '@/assets/img/projects/fukushima_exp1.jpg'; import fukushimaKosenExp2Img from '@/assets/img/projects/fukushima_exp2.jpg';