Group assignment
Individual assignment
Design is an area I'm very comfortable in. So I will start by documenting the tools I already use and have experience with before I start with the new software. I'm excited to use Fusion and Blender based on the comments of the FabLab Network. I am a huge fan of the golden ratio as a concept, and I believe the best designs come from nature.
I have been in this field since 2001, working with Adobe apps. I am a fan of vector graphics and I will share my approaches in the coming sections.
One of the elements I need in my final project is a way to connect two pieces such that they can be removed and replaced.
I also have basic experience designing some of the items I needed for my work, especially designing and printing medals and award plaques.
01 | I logged in to my account on TinkerCAD and created a new 3D file
07| There is a huge difference in the 3D shape, even though both designs were expected to be the same object
08| The orientation and the size of both objects are the same. This is the original design file.
09| This is one of my old projects — creating a conveying gear system.
02| Unfortunately it was not accepted and I contacted FabLab and am waiting for this issue to resolve
03| After a few weeks I got access and was very excited to install the educational version of Fusion on my local device
05| I tried to open a design I created in TinkerCAD: opened the file in TinkerCAD → press export → selected opening in Fusion
07| This is how the file looks — it's clear that it was meshed and not imported as objects
08| I also tried to start from scratch making my first sample which can be downloaded here
01| As I mentioned in Week 01, since I'm on a MacBook I use the built-in Preview app to compress my images.
03| This is the screen-recording video I made while working in Fusion — the file is around 70 MB and I need to bring it down to roughly 2–5 MB.
04| I first tried FFmpeg for macOS, using this command: ffmpeg -i /Users/hamidahrk/Desktop/w2-imgcom2.mov -vcodec libx264 -crf 23 /Users/hamidahrk/Desktop/compressed_video.mp4. For a smaller file size (more compression, slightly lower quality) change -crf 23 to a higher number like 28; for higher quality (larger file, less compression) use a lower number like 20.
05| The first compression came out at 17 MB. I wanted smaller, so I changed -crf to 28 and the video dropped to a 12 MB file.
06| After exploring more flags I made the video lower quality (-crf 28), 10× faster, and silent using: ffmpeg -ss 1 -i /Users/hamidahrk/Desktop/compressed_video.mp4 -vf "setpts=0.10*PTS" -an -vcodec libx264 -crf 28 /Users/hamidahrk/Desktop/fast_10sec_silent.mp4. The result: from 70 MB to 2.4 MB as a 10-second video.
-crf + setpts + -an turned a 70 MB screen recording into a 2.4 MB silent 10-second clip — became my default video/image compression workflow for the rest of the academy.-crf 28 + speed-up + audio strip to land at the target size.-crf + speed + audio choices in one pass, not iteratively).