Create With TechLearn how to install TripoSR and transform your 2D images into 3D models ready for 3D printing! In this step-by-step tutorial, I’ll walk you through the full installation process of TripoSR, including setting up a batch file and a small Python script to streamline launching the application. With this setup, you’ll be able to start the Gradio UI quickly, making it even easier to convert your images into 3D printable models.
Whether you're new to AI tools or looking to optimize your workflow, this video is designed to help you get started.
00:00 - Intro 00:44 - Installing Global Requirements 05:36 - Removing CUDA References from System Environment Variables 08:04 - TripoSR Main Installation 25:28 - Installing Batch File & Pi Script for Automatic Startup 30:50 - Outro
1. Install all the Global Requirements. 2. Remove any reference to CUDA from System Environment Variables. Make sure to make a copy of the information in an application such as Notepad++ 3. Make a folder for TripoSR C:/TripoSR 4. Open up the Command Line Interface (CLI) and go to the TripoSR folder: cd C:/TripoSR 5. Clone the TripoSR repository from GitHub: git clone github.com/VAST-AI-Research/TripoSR.git 6. Create a Virtual Environment: python -m venv venv 7. Activate the virtual environment: venv\Scripts\activate 8. Install PyTorch: pip3 install torch torchvision torchaudio 9. Update PIP: python.exe -m pip install --upgrade pip 10. Update setuptools: pip install --upgrade setuptools 11. Go into the folder with the requirements.txt: cd C:/TripoSR/TripoSR 12. Install the TripoSR dependencies: pip install -r requirements.txt 13. Install onnxruntime: pip install onnxruntime 14. Uninstall Gradio 4.8.0 (which does not work properly): pip uninstall gradio 15. Install the newest version of Gradio: pip install --upgrade gradio . Ignore the red error... 16. Run the Gradio script to run the program: python gradio_app.py
Installing the Batch and Python script for easier accessibility to the program:
1. Copy the batch script and the Python script to a text program such as Notepad++ 2. Copy Batch script into Notepad++ and name it -- run_triposr.bat -- Save it in C:/TripoSR
@echo off cd C:\TripoSR call venv\Scripts\activate cd C:\TripoSR\TripoSR start cmd /k python gradio_app.py
REM Wait for the server to be available using the Python script python wait_for_server.py
REM Launch Chrome after server is ready start chrome http://127.0.0.1:7860 pause
3. Copy Python script into Notepad++ and name it -- wait_for_server.py -- Save it in C:/TripoSR/TripoSR
import socket import time
def wait_for_server(host, port): while True: try: with socket.create_connection((host, port), timeout=2): print("Server is up!") breakw except (OSError, ConnectionRefusedError): print("Waiting for server...") time.sleep(2)
How to Install TripoSR for 2D to 3D Printing with AI – Step-by-Step GuideCreate With Tech2025-01-09 | Learn how to install TripoSR and transform your 2D images into 3D models ready for 3D printing! In this step-by-step tutorial, I’ll walk you through the full installation process of TripoSR, including setting up a batch file and a small Python script to streamline launching the application. With this setup, you’ll be able to start the Gradio UI quickly, making it even easier to convert your images into 3D printable models.
Whether you're new to AI tools or looking to optimize your workflow, this video is designed to help you get started.
00:00 - Intro 00:44 - Installing Global Requirements 05:36 - Removing CUDA References from System Environment Variables 08:04 - TripoSR Main Installation 25:28 - Installing Batch File & Pi Script for Automatic Startup 30:50 - Outro
1. Install all the Global Requirements. 2. Remove any reference to CUDA from System Environment Variables. Make sure to make a copy of the information in an application such as Notepad++ 3. Make a folder for TripoSR C:/TripoSR 4. Open up the Command Line Interface (CLI) and go to the TripoSR folder: cd C:/TripoSR 5. Clone the TripoSR repository from GitHub: git clone github.com/VAST-AI-Research/TripoSR.git 6. Create a Virtual Environment: python -m venv venv 7. Activate the virtual environment: venv\Scripts\activate 8. Install PyTorch: pip3 install torch torchvision torchaudio 9. Update PIP: python.exe -m pip install --upgrade pip 10. Update setuptools: pip install --upgrade setuptools 11. Go into the folder with the requirements.txt: cd C:/TripoSR/TripoSR 12. Install the TripoSR dependencies: pip install -r requirements.txt 13. Install onnxruntime: pip install onnxruntime 14. Uninstall Gradio 4.8.0 (which does not work properly): pip uninstall gradio 15. Install the newest version of Gradio: pip install --upgrade gradio . Ignore the red error... 16. Run the Gradio script to run the program: python gradio_app.py
Installing the Batch and Python script for easier accessibility to the program:
1. Copy the batch script and the Python script to a text program such as Notepad++ 2. Copy Batch script into Notepad++ and name it -- run_triposr.bat -- Save it in C:/TripoSR
@echo off cd C:\TripoSR call venv\Scripts\activate cd C:\TripoSR\TripoSR start cmd /k python gradio_app.py
REM Wait for the server to be available using the Python script python wait_for_server.py
REM Launch Chrome after server is ready start chrome http://127.0.0.1:7860 pause
3. Copy Python script into Notepad++ and name it -- wait_for_server.py -- Save it in C:/TripoSR/TripoSR
import socket import time
def wait_for_server(host, port): while True: try: with socket.create_connection((host, port), timeout=2): print("Server is up!") breakw except (OSError, ConnectionRefusedError): print("Waiting for server...") time.sleep(2)
wait_for_server("127.0.0.1", 7860)
ENJOY!I Built a Sarcastic Desktop AI RobotCreate With Tech2025-09-01 | In this project I set out to build a physical, emotive face for a conversational AI, but I ended up with a sarcastic, philosophical, and witty companion who loves to argue with me. This is the story of Eliza V2.
In this video I'll show you how I created this one-of-a-kind desktop robot, from the initial breadboard prototype to the final, hand-soldered, permanent hardware. We'll dive into the challenges of the physical build and then explore the incredible software that brings her to life.
IN THIS VIDEO, YOU'LL SEE:
--The complete hardware build, including the ESP32-S3 "Brain" and the 32x32 HUB75 LED matrix face. --The transition from a messy prototype to a robust, soldered perfboard circuit. --A full, unfiltered conversation where I interview Eliza and she showcases her unique, sarcastic personality. --The powerful Python, Docker, and local LLM (Ollama) setup that serves as Eliza's mind.
I'm not a professional programmer. The entire software brain you've seen in action—her memory, her personality, was created by way of a collaboration over thousands of prompts with a Google AI.
What would YOU ask a sarcastic robot? Let me know in the comments below! If you enjoyed this journey into the world of creative AI and DIY electronics, please consider liking the video and subscribing to the channel for more projects like this. Thanks for watching!
00:00 - Introduction 02:54 - The Components 05:37 - Soldering the Perfboards 07:10 - Arduino IDE Code 07:47 - Emotion Tags Idea 08:42 - Giving Eliza Personality 09:06 - Why I named her Eliza 10:04 - Giving Eliza Permanent & Essence Memory 10:40 - Eliza's Python Software 11:23 - Docker Container for Eliza 11:42 - 3D Printed Enclosure Design 13:06 - Conversation with Eliza 20:24 - OutroHow to Remove Text from a 3D Print (No CAD Needed | Works in OrcaSlicer & PrusaSlicer)Create With Tech2025-05-31 | Ever download a great 3D model—only to find some unexpected text embossed or engraved into the print? In this video, I show you how to remove that kind of embedded text using just your slicer—no CAD skills required.
I’ll walk you through the process step by step in OrcaSlicer, but this technique also works in PrusaSlicer, and maybe even in Cura (though I haven’t tried it there yet). Whether it's a logo, a slogan, or a bit of text that’s just not your style, this quick tutorial will show you how to clean up your print without modifying the STL in a separate modeling program.
This was inspired by a great print from Julien Mairy (aka Printer n’ Beer) that I really liked—except for the little bit of text on the side. No offense to Julien at all—just a personal preference!
-- No CAD needed -- Beginner-friendly method -- Perfect for makers who want to tweak STL files without starting from scratch
Tools used in this video: OrcaSlicer (you can also try it in PrusaSlicer or Cura)
Like the video if you found it helpful, and drop a comment if you’ve run into this kind of issue before—or have your own workaround!
00:00 - Intro 02:12 - Removing Etched Text 09:47 - Removing Embossed Text 13:35 - Showing 3D Print With and Without Text 15:00 - OutroI Turned a Sketch into a 3D Print Using AI – No 3D Skills Needed!Create With Tech2025-03-02 | I used AI to turn a simple sketch into a 3D printable model—no 3D modeling skills required! In this video, I’ll walk you through my AI-powered workflow step by step: from creating an image with Stable Diffusion + ControlNet to converting it into a 3D model with Trellis and finally 3D printing the best designs!
🔹 Step-by-Step Workflow: ✔️ Sketch a basic design in Krita ✔️ Use AI (Stable Diffusion + ControlNet) to generate an image ✔️ Convert the image into a 3D model using Trellis (no manual 3D modeling needed!) ✔️ 3D print the final models and assess the results
🚀 AI doesn’t replace creativity—it enhances it! This process eliminates the need for complex 3D modeling software, making it easier than ever to bring your ideas to life.
👉 Watch until the end to see the 3D prints in action! Let me know what you’d create with this workflow in the comments!
00:00 - Intro 01:43 - Setting Up Krita for Sketching 03:14 - Sketching in Krita 05:56 - Using Stable Diffusion to Convert Sketches into Images 12:48 - Comparing Sketches with AI-Generated Images 14:43 - Turning Images into 3D Models with Trellis 18:52 - Checking & Prepping Meshes for 3D Printing in Blender 21:39 - Showcasing the Final 3D Prints 23:19 - OutroHunyuan3D-2 vs. Trellis: Free Tools for 3D Printing ComparedCreate With Tech2025-02-11 | Can Hunyuan3D-2 revolutionize 2D-to-3D printing for free?
In this video, I’ll guide you through the installation, setup, and a hands-on comparison with Trellis, another powerful open-source tool. If you're into 3D printing and modeling, you won’t want to miss this!
What You’ll Learn: How to install & use Hunyuan3D-2 How it stacks up against Trellis Which tool is the best fit for your 3D printing workflow
Timestamps: 0:00 - Introduction 3:01 - Step-by-Step Installation of Hunyuan3D-2 18:05 - Enabling Text-to-3D Model Feature 23:50 - Head-to-Head Comparison: Hunyuan3D-2 vs. Trellis 26:26 - Testing Both Models in Blender 27:14 - VRAM & Performance Requirements 28:48 - 3D Print Comparison & Final Thoughts 30:25 - OutroOpen Source AI Showdown: TripoSR vs. Trellis vs. Spar3D – 2D to 3D Printing Face-Off!Create With Tech2025-01-26 | What Open Source AI is best for transforming 2D images into accurate and printable 3D models? In this ultimate showdown, I put TripoSR, Trellis, and Spar3D to the test to see which tool delivers the most accurate, refined, and 3D-printable results.
In this video I'll guide you through the process of converting a 2D image into a 3D model using each tool. I’ll compare their strengths, weaknesses, ease of use, and the final 3D-printed results to crown the ultimate winner of this 2D-to-3D AI challenge.
What you’ll see in this video:
A side-by-side comparison of TripoSR, Trellis, and Spar3D. How each AI performs at creating 3D models from 2D images. Tips for refining and preparing your models for 3D printing. The final print results – which tool came out on top? Whether you’re an AI enthusiast, 3D printing hobbyist, or just curious about cutting-edge technology, this video has something for you.
Tools featured in this video:
TripoSR – A versatile tool for 3D modeling. Trellis – Known for its detailed AI-based reconstruction. Spar3D – A unique point-aware AI for model generation.
Don’t forget to hit like, share your thoughts on the showdown in the comments, and subscribe for more exciting tech experiments and reviews!
00:00 - Intro 01:12 - Generating 3D Models in TripoSR 06:52 - Generating 3D Models in Trellis 12:22 - Generating 3D Models in Spar3D 18:48 - Comparing Mesh in Blender 22:45 - 3D Printing Models Timelapse 24:00 - Final Assessment of 3D Models 24:52 - OutroFrom Image to 3D Model to 3D Print Using TripoSRCreate With Tech2024-12-30 | In this video, I'll demonstrate how to use TripoSR, an open-source AI model, to convert 2D images into 3D models and print them using a 3D printer. The TripoSR model is installed directly on my computer, but if you need installation instructions, please refer to the GitHub page linked below for a step-by-step guide:
00:00 - Introduction 01:16 - Choosing the Right Images 03:08 - Converting Images to 3D Models in TripoSR 11:05 - Applying Retopology with Instant Mesh 13:37 - Saving OBJ Files as STL 17:50 - Slicing the STL Files in Bambu Studio 25:59 - Print Timelapse & Commentary 27:35 - Outro
Steps: 1. Install Python ◦ Download Python 3.8 or higher from the Python Downloads page. ◦ During installation, check the box labeled "Add Python to PATH". ◦ Verify installation by opening Command Prompt and typing: python --version
2. Install Visual Studio Build Tools ◦ Visit the Visual Studio Build Tools page. ◦ Install components for C++ development, such as: ▪ "Desktop development with C++" ▪ "C++ build tools"
3. Install Rust & Cargo ◦ Download the Rust installer from rustup.rs and run rustup-init.exe. ◦ Follow the on-screen instructions, choosing the default installation. ◦ Verify installation by typing: rustc --version cargo --version
4. Remove CUDA References. This is necessary since we're doing a CPU-only install. These references will need to be restored after the installation. ◦ Go to "Edit System Environment Variables" in Windows. ◦ Remove any CUDA-related variables from the Environment Variables. Save these to Notepad for later restoration.
5. Create a Project Folder ◦ Example: C:/TripoSR
6. Open Command Line Interface (CLI). You can open this by putting CMD in the search field. You’ll see the Command Prompt option. Click on it to open up Command Prompt. Once open navigate to the project folder you created with the following command: cd C:/TripoSR
8. Set Up a Virtual Environment python -m venv venv
9. Activate the Virtual Environment venv\Scripts\activate
10. Install PyTorch (CPU Only)
Visit PyTorch ( pytorch.org/get-started/locally) to choose your platform-specific installation. In this guide I’m assuming a CPU only installation so you can use the code below... ◦ Install PyTorch: pip install torch torchvision torchaudio
12. Install Other Dependencies by navigating to the TripoSR folder: cd C:/TripoSRdemo/TripoSR pip install -r requirements.txt
13. Run the Gradio Interface python gradio_app.py
14. Resolve ONNX Runtime Error (should you get this error) by Installing ONNX Runtime (CPU Only): pip install onnxruntime pip show onnxruntime
15. Rerun the Gradio Interface python gradio_app.py
16. Address Gradio Version Warning by uninstalling the current version of Gradio and updating: pip uninstall gradio pip install --upgrade gradio
17. Verify Functionality by opening the local address displayed in the CLI: http://127.0.0.1:7860
18. Test and Enjoy. Confirm the interface is running and functional. Congratulations, you're successfully installed TripoSR
19. I created a batch file to automatically run TripoSR. Save the batch file in the C:/TripoSR folder. For this example, I’m assuming you’ve set up the project in C:/TripoSR. If your project is in a different folder, you’ll need to adjust the code accordingly.
To create the file, use a text editor like Notepad++ (notepad-plus-plus.org/). Name the file something like run_triposr.bat.
Make sure the file has the .bat extension, as this is mandatory.
Here’s the batch code:
@echo off cd C:\TripoSR call venv\Scripts\activate cd C:\TripoSR\TripoSR start cmd /k python gradio_app.py
REM Wait for the server to be available using the Python script python wait_for_server.py
REM Launch Chrome after server is ready start chrome http://127.0.0.1:7860 pauseFrom Concept to Creation: Designing an Animated Chatbot FaceCreate With Tech2024-07-12 | In this video, I'll walk you through the design process behind my Chatbot's animated LED face. From concept to creation, I'll share the inspiration and technical details that brought this project to life.
And then, I'll take it a step further by having a natural conversation with my Chatbot. See how our exchange goes!
Let me know if this is more to your liking! 00:00 - Intro 01:05 - Components Used 03:41 - Connecting the Components 04:36 - The Code 05:41 - The Problem 06:22 - Solution #1 07:29 - What Worked 09:29 - Inside the Finished Product 12:34 - Installing Ollama & Llama 3 13:38 - Conversing with the Chatbot 24:19 - Outro
5V 2A Power Supply -- amazon.ca/Arkare-Adapter-100V-240V-Security-Raspberry/dp/B0BFFFWWQMEasy/Free Mixed Reality for Microsoft Flight Simulator 2020 VRCreate With Tech2024-06-10 | In this video, I'm going to show you how to create a mixed reality experience with Microsoft Flight Simulator using only open source software. This system allows you to create any cockpit for the pass-through, and best of all, it's completely free!
This is a step-by-step tutorial on setting up this immersive experience. You'll learn how to configure the necessary software, create custom cockpits, and seamlessly integrate them with Microsoft Flight Simulator.
Don't forget to like, comment, and subscribe if you find this video helpful. Your support is greatly appreciated!
00:00 - Introduction 01:29 - Required Software 02:40 - Finding a Cockpit Template Image 03:42 - FreeCAD Workflow 11:32 - Inkscape Workflow 14:27 - Configuring OpenKneeboard 22:57 - Configuring Virtual Desktop & Using in MSFS 25:02 - OutroMSFS in VR and 3D Printed ModsCreate With Tech2024-04-25 | In this video I'm going to walk you through the mods I made to my Microsoft Flight Simulator setup with original 3D designed and printed parts.
00:00 - Intro 00:16 - The 3D Printed Mods 04:39 - The Software I Use 09:04 - Loading the Software 11:58 - Getting Ready in Virtual Desktop 12:55 - MSFS in VR 26:29 - OutroAn Easier Way to Make a Hole on a Curved Surface in FreeCADCreate With Tech2023-12-18 | In this video I'll show you an easy way to make a hole on a curved surface in FreeCAD without using a Datum Plane.ESP32 3D Printed PhotogrammetryCreate With Tech2023-10-27 | In this video I'll show you how you can 3D Print a versatile turntable (for photogrammetry and product display). This project is easy and perfect for people who are new to electronics and 3D printing. All the files you need will be made available soon. Interested? Comment below! Don't miss out—subscribe and ring the notification bell for more exciting projects!
00:00 - Intro 00:38 - Project Inspiration 02:03 - My Electronics Background 02:23 - The Components Used 03:02 - Assembling the Electronic Components 03:35 - Turntable functionality -- What it needs to do 04:11 - Programming turntable with ChatGPT 07:08 - Making the camera interface cable & software integration 09:54 - Designing & 3D printing the turntable 10:20 - Testing the final turntable & camera integration 10:49 - First 3D model created from photos taken using turntable 10:57 - How I built the app to control the turntable 11:51 - How the app works 15:56 - Last words & outroMastering FreeCADs Trace Feature: Designing a 3D-Printed Electronic Component ContainerCreate With Tech2023-09-24 | Welcome to my latest FreeCAD tutorial! In this video I'll show you how to use FreeCAD's Trace feature to design a custom container for electronic components. Whether you're a beginner or a seasoned CAD user, I've got you covered with easy-to-follow steps and expert tips.
Here's what you'll learn:
1. How to navigate FreeCAD's interface 2. Using images to trace precise 3D models 3. Designing a container that fits your electronic components perfectly 4. Preparing your model for 3D printing 5. I'll also show you how to obtain the perfect reference images for tracing in FreeCAD!
This tutorial will show you the full potential of FreeCAD and will enable you to make precise 3D models easily.
00:00 - Intro 00:40 - What you'll need 03:27 - Making the Container 05:56 - Calibrating the Breadboard 06:58 - Calibrating the Driver 07:27 - Calibrating the Stepper Motor 08:01 - Calibrating the Power Module 08:43 - Calibrating the USB opening. 09:12 - Organizing components in the container 13:18 - Tracing Stepper Motor 18:41 - Tracing Driver 20:32 - Tracing Power Module 22:25 - Tracing the USB opening 23:48 - Showing the top 24:54 - 3D printing completed container & final placement of components 25:51 - Outro
Music from #Uppbeat (free for Creators!): uppbeat.io/t/simon-folwar/connected License code: EPEA9O5OSUVLB5K9Make Hinged 3D Models Easily in FreeCADCreate With Tech2023-08-27 | In this video I'll show you how you too can easily make 3D hinged models in FreeCAD. This is a relatively easy project that will teach you a bit about image manipulation for 3D printing as well as Computer Aided Design using FreeCAD.
00:00 - Introduction to PIP Hinged Models 02:07 - Create with Tech Intro 02:19 - What you'll need for project 04:16 - Getting useable image from web 06:51 - Fixing image for 3D printing in GIMP 13:05 - Converting image to SVG in Inkscape 18:40 - Converting image into a 3D model in FreeCAD 23:09 - Inserting hinges into cat in FreeCAD 47:09 - Checking model in PrusaSlicer 47:41 - Print timelapse & OutroApples Vision Pro Spacial Computing! Is This the Future?Create With Tech2023-06-20 | Is Apple's new Vision Pro going to change the way we live and work? Here's my take.Four Slicer Settings For Difficult to Print 3D ModelsCreate With Tech2023-06-17 | In this video I'll show you how to succeed with difficult print-in-place 3D models using 4 simple settings in the slicer!
00:00 - Intro 01:55 - Setting #1 03:11 - Important Info 04:35 - Setting #2 06:35 - Setting #3 (This is the big one!) 10:09 - Timelapse of print 10:41 - Setting #4 14:12 - Outro
Music: Music from #Uppbeat (free for Creators!): uppbeat.io/t/hartzmann/clear-sky License code: 3VJM3B2OY6GLCQH7Klipper 3D Printing Flow & Extrusion Easy!Create With Tech2023-05-26 | In this video I'll walk you, step by step, to help you get perfect flow and extrusion with Klipper. This is something you absolutely need to get perfect prints with your 3D printer.
00:00 - Intro -- The problem (under extrusion) 00:35 - What You Need 01:18 - Calibrating Extrusion (Rotational Distance) 04:46 - Extrusion Multiplier (Explained) 05:51 - Calculating Extrusion Multiplier 08:35 - Outro
Download Extrusion Multiplier Model:
printables.com/model/81314-flow-calibration-cubeMouse Ears To Prevent Warped 3D PrintsCreate With Tech2023-05-13 | Warping of the corners of 3D prints is a very common and annoying issue in 3D printing. Using Mouse Ears will prevent warping without damaging your 3D print. In this video I'm going to show you a simple way to place Mouse Ears on a print and how to get them off with minimal damage to your 3D printed part.
Music from #Uppbeat (free for Creators!): uppbeat.io/t/prigida/picture-frames License code: L9ZTI4L06UQHVTI7I Saved My Daughter $26.07 with 3D PrintingCreate With Tech2023-03-16 | Helping my daughter with her murder mystery party using 3D printing.
Music from #Uppbeat (free for Creators!): uppbeat.io/t/fugu-vibes/plastic-world License code: Z8WSTZ2OIC6GIHKAMake Original Models for 3D Printing With Almost 0 KnowledgeCreate With Tech2023-03-07 | In this tutorial I show you how to create original 3D models easily even if you have absolutely now knowledge of Computer Aided Design.
Music from #Uppbeat (free for Creators!): uppbeat.io/t/ak/legacy License code: 008FRUAMPL7HTENF
00:00 - Intro 01:54 - Downloading images, Inkscape, and Freecad 05:19 - Working on cats image -- Inkscape 11:20 - Working on cats image -- FreeCAD 18:52 - Working on dog image -- Inkscape 20:53 - Working on dog image -- FreeCAD 31:37 - Printing & displaying finished models 32:28 - OutroDesign a Simple Container in FreeCAD Beginner TutorialCreate With Tech2022-12-10 | This is a step-by-step introduction on using FreeCAD to design a simple container with a lid. I also show you how to create a decorative design around the container using Modifiers in PrusaSlicer. This tutorial is for someone who's a total beginner to Computer Aided Design.
00:00 - Intro 01:18 - Designing in FreeCAD 15:19 - Slicing in PrusaSlicer 20:51 - Printing 21:35 - Outro
Downloads: FreeCAD Official -- freecadweb.org/downloads.php FreeCAD Realthunder Fork -- github.com/realthunder/FreeCAD/releases PrusaSlicer -- prusa3d.com/page/prusaslicer_424Bambu Lab P1P and DJI PlaybookCreate With Tech2022-11-17 | On the heels of their recently released X1 Carbon, Bambu Lab is now promoting a new printer, the P1P. In this video I discuss Bambu Lab's marketing strategy which, not surprisingly, is very similar to the way DJI markets their products.Dont Nix It, Fix It!Create With Tech2022-10-19 | I've had situations where people tell me that 3D printing is useless. This video illustrates how I used 3D printing to fix something that would otherwise have had to be thrown away thereby showing how 3D printing actually has practical uses.Make a Model in Virtual Reality and then 3D Print it For total beginners!Create With Tech2022-09-19 | In this mixed reality video I immerse myself in the virtual environment of Gravity Sketch where I show how to create models really easily that can be 3D printed.
00:00 - Intro 00:30 - Modeling Vase in VR 09:32 - Using a Reference Image & SubD Modeling 15:31 - Modeling Dog in VR 21:25 - Slicing Vase for 3D Printing 26:08 - Slicing Dog for 3D Printing 30:21 - Printing Vase & Dog 31:26 - Assessing Final Prints 32:37 - OutroTwo Easy Ways to Edit STL Files For 3D PrintingCreate With Tech2022-07-28 | In this video I walk you through two simple ways to edit STL (stereolithography) models for 3D printing. 00:00 - Intro 00:23 - Modding STL Files Using CAD & Slicer 06:06 - 3D Printing STL Mod Using Slicer 06:31 - Converting STL to Editable Body Using FreeCAD 12:30 - Editing Model in FreeCAD (Posts) 20:05 - 3D Printing STL Mod Using Editable Body FreeCAD 20:27 - Outro
Music from Uppbeat (free for Creators!): uppbeat.io/t/soundroll/transcend License code: DHZQKJMXFWMAAFJYNasty Cura 5 BugCreate With Tech2022-06-30 | If you're running Cura 5 on a dual monitor setup and Cura crashes every time you open a secondary window in Cura, this video will tell you where the problem originates and how to solve it.
00:00 - Intro 00:39 - Applying Solution 05:49 - OutroStop Filament Ooze From 3D Printer NozzleCreate With Tech2022-06-27 | If you've installed an Automatic Bed Leveling system on your 3D printer and you're experiencing filament ooze from your nozzle before the ABL does a mesh this video will show you how to fix the problem.
00:00 - Intro 03:10 - Gcode Instructions Cura 09:41 - Testing on Ender 3 Pro 11:12 - Outro
HERE'S THE ENDER 3/ENDER 3 PRO GCODE. IT SHOULD WORK ON OTHER PRINTERS AS WELL.
CURA
; Ender 3 Custom Start G-code G92 E0 ; Reset Extruder G28 ; Home all axes
M104 S140 ; Set Extruder temperature M140 S{material_bed_temperature_layer_0} ; Set Heat Bed temperature M190 S{material_bed_temperature_layer_0} ; Wait for Heat Bed temperature
G29 ; Initiate Bed Leveling G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed G1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position
M104 S{material_print_temperature_layer_0} ; Set Extruder temperature M109 S{material_print_temperature_layer_0} ; Wait for Extruder temperature
G1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line G1 X0.4 Y200.0 Z0.3 F5000.0 ; Move to side a little G1 X0.4 Y20 Z0.3 F1500.0 E30 ; Draw the second line G92 E0 ; Reset Extruder G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed G1 X5 Y20 Z0.3 F5000.0 ; Move over to prevent blob squish
PRUSASLICER
G90 ; use absolute coordinates M83 ; extruder relative mode M140 S{first_layer_bed_temperature[0]} ; set final bed temp M104 S140 ; set temporary nozzle temp to prevent oozing during homing and auto bed leveling G4 S10 ; allow partial nozzle warmup G28 ; home all axis G29 ; auto bed levelling G1 Z50 F240 G1 X2 Y10 F3000 M104 S{first_layer_temperature[0]} ; set final nozzle temp M190 S{first_layer_bed_temperature[0]} ; wait for bed temp to stabilize M109 S{first_layer_temperature[0]} ; wait for nozzle temp to stabilize G1 Z0.28 F240 G92 E0 G1 Y140 E10 F1500 ; prime the nozzle G1 X2.3 F5000 G92 E0 G1 Y10 E10 F1200 ; prime the nozzle G92 E0Easy solution to an annoying Z-Offset problem!Create With Tech2022-04-07 | What do you do if you're trying to set your Z-Offset but your printer's stop limit switch is turned on and you can't go below 0, which you'll need to be able to do in order to actually set the Z-Offset. Unfortunately your printer is not connected to your WiFi and you can't send the G-Code command to turn off the stop limit switch. In this video I show you an easy way to send G-Code commands to your printer, even if it's a stand-alone and not connected to WiFi or to any software that allows you to send G-Code commands to the printer.
00:00 - Intro 02:35 - Installing Notepad++ 03:32 - Installing Notepad++ G-Code User Defined Language 05:19 - Writing G-Code in Notepad++ 07:36 - Running Notepad++ Created G-Code on Printer 09:34 - Concluding Remarks 10:30 - OutroVideo Editing in 1993 Fast Video Machine LiteCreate With Tech2022-03-05 | In 1993 I paid $3000 for this computer-based video editing system. In this video I show you what you got for $3000 in in the mid 90s.Print a Temperature Tower to Improve your 3D Prints Cura 4.13.1Create With Tech2022-02-19 | Are your 3D prints not looking so good? There's a good chance a Temperature Tower will help. In this video I show you the easiest way to print a Temperature Tower using a Cura 4.13.1 plugin and a simple script.
Chapters 0:00 Intro. 0:25 Explaining how temperature tower works. 3:19 Setting up a Temperature Tower in Cura. 9:28 Temperature Tower print timelapse. 9:51 Interpreting the Temperature Tower. 11:53 Outro and thank you.
Music from Uppbeat (free for Creators!): uppbeat.io/t/fugu-vibes/spatial License code: IBUMQC11ARB7B0ZVMake a Hole on Curved Surface in FreeCADCreate With Tech2022-01-28 | Making a hole on a curved surface in FreeCAD should be easier than it is. In this video I show you an easy way to make a hole on a curved surface in FreeCAD.Get Thumbnails in Octoprint EASY!Create With Tech2022-01-25 | In this video I'm going to show you two ways to get thumbnails in Octoprint. This is very helpful if you've got a long list of models.
00:00 - Introduction -- Method 1 00:59 - Thumbnails with Cura Thumbnails & Octoprint Connection 09:28 - Introduction -- Method 2 10:38 - Thumbnails with Cura Slicer & Script 16:09 - OutroTotal Beginner Tutorial Design & Print 3D VasesCreate With Tech2022-01-14 | This tutorial is for people who are new to 3D printing who know nothing about 3D design but would like to start learning. I'll show you an easy way to create original Vases in FreeCAD and will also show you how to create a profile in Cura to slice your original Vase design and send it to the printer.
00:00 - Introduction 01:31 - Designing Vase in FreeCAD 15:40 - Setup Cura Profile for Slicing Vases 22:57 - Slicing Vase Created in FreeCAD 25:36 - Sending Vase G-Code to Printer 27:29 - Vase Print Timelapse 28:42 - OutroEasy z-offset adjustment for your 3D printer.Create With Tech2021-12-26 | This is an absolute beginner's tutorial on setting a 3D printer's z offset when you have a bed leveling probe installed such as the BL Touch or CR Touch. I don't only tell you how to do it, I also explain the relationship between leveling the bed with an ABL and the z offset.
in order to extend the probe I installed the OctoPrint BLTouch plugin which can be found here: plugins.octoprint.org/plugins/BLTouchSub 250g Drone Rules Suck!Create With Tech2021-08-26 | In this video I discuss the reasons why sub 250g drone rules suck because of they're uncompromising rigidity. I also propose what I think is a reasonable solution that would allow a user to go over 250g without having to jump to the over 250g category and all the regulations associated with heavier drones.VLOS Visual Line of Sight Doesnt Work!Create With Tech2021-08-15 | The VLOS rule doesn’t work – at least not the way it’s written now. In this video I give my take on the problem and suggest ways that I think the VLOS rule could be modified to make it more in line with the reality of flying a drone.Crazy DJI Mini 2 Setting That almost no one knows about!Create With Tech2021-07-15 | The DJI subtitles function is extremely helpful but very rarely talked about or even used. In this video I'll show you how to get the most out of this setting when using your Mini 2 drone.
Download Subtitle Edit here: https://nikse.dk/SubtitleEdit/DJI Air 2S 10 Reasons To BuyCreate With Tech2021-04-18 | DJI recently released the Air 2S. In theory this is an incremental upgrade to the Mavic Air 2. In reality it is much more than that, and boasts some significant upgrades, especially to the serious aerial photographer.
In this video I discuss 10 reasons why it's worth upgrading to the DJI Air 2S.DJI Mini 2 3D Printed Landing Gear Extension & Lanyard Holder for the Controller.Create With Tech2021-01-28 | For the most part the Mini 2 is an outstanding drone! But there are a couple of things about it that are annoying. Firstly, it's so low to the ground that it's always a bit stressful to land, especially if there's some tall grass or a bit of snow. Secondly, the controller doesn't have any place to clip a lanyard, which is a must for me, since it makes the flying experience so much more comfortable. In this video I'm showing how I 3D printed a landing gear extension for the drone and a lanyard holder for the controller. You can find the link below to download the files to 3D print your own.
Lanyard Holder: thingiverse.com/thing:4499731Step by step tutorial on making 3D printed ornaments.Create With Tech2020-12-22 | This is a beginner's step-by-step tutorial on how to make 3D printed ornaments and decorations for the holidays, or for any occasion really. If you have a new 3D printer that you're just trying to figure out, this is a great project to get your creativity flowing and to learn how to better use your 3D printer.
Stuff You'll Need: 1. Adobe Illustrator -- Use open source InkScape if you don't have access to Illustrator.
Jingle Bells Calm by Kevin MacLeod is licensed under a Creative Commons Attribution 4.0 license. creativecommons.org/licenses/by/4.0 Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100187 Artist: http://incompetech.com3D Printing Blobs Solved!Create With Tech2020-12-11 | After updating my 3D printer's firmware I started getting blobs on my prints. It took a bit of sleuthing but I figured out what was going on! I walk you through my thinking process and give 10 suggestions that may help you when you encounter tech issues.DJI Mini 2 Sub 250g Drone Regulations in CanadaCreate With Tech2020-11-29 | In Canada sub 250g drones are not as regulated as larger drones. While this is mostly great, it's not without some problems. This is an opinion piece on flying sub 250g drones in Canada and what new and seasoned drone flyers need to watch out for when flying powerful micro drones such as the DJI Mini 2.Manual Mesh Bed Leveling Ender 3 Free and easy to install solution to a warped bedCreate With Tech2020-11-01 | This video is a complete guide to installing and using Manual Mesh Bed Leveling with Marlin 2 on your Ender 3 with the Bigtreetech SKR Mini E3 V2. This is a completely free and easy to implement solution to a warped bed and will ensure that you get a perfect 3d print.
Bigtreetech Github page github.com/bigtreetechThe 3D Benchy StoryCreate With Tech2020-10-13 | In this video I discuss the origins of the 3D Tug Boat Benchy and explain why this little fun toy is so important to 3D printing.
Benchy Website: http://www.3dbenchy.comCalculate your 3d Print Cost in Cura 4.7Create With Tech2020-09-01 | In this video I go through how to set up Cura 4.7 to show the approximate cost of 3D prints. This is a very easy thing to do but you do need to change some settings to make it work.Control Your Android Device RemotelyCreate With Tech2020-08-24 | In this video I show three ways to control an Android device remotely. There are many reasons why you might want to do this. The purpose that I focus on in this video is controlling the speed of text scrolling on a Teleprompter.
SOME STUFF YOU'LL NEED 1. Tablet Remote APK -- The first app that I illustrate is not available on the Google Play Store. You'll have to download it and then sideload the app onto your android device. You can download the app from APKPure:
At this point, the "Lens Sleeve" is designed to mount on a 58mm lens. I'm working on making this compatible with a wider range of lenses. Beyond the 3D printed parts there are a few things that you’ll need, all of which you can probably find at the dollar store. They are:
Paper Clips 8 ½ x 11 piece of felt A piece of glass from a picture frame (4x6 in – 10.2 x 15.2 cm) A strip of sticky Velcro Superglue
The screw(s) for mounting on the lens are 14mm. Depending on your 3D printer’s tolerance you may need to modify the size of the screws in your slicer. In order to have the screws work with my Ender 3 I needed to reduce the size from 14mm to 12.3mm. You’ll need to experiment with this until you get the right tolerance for your printer.
All of my prints were done using PLA
I recommend printing the main body of the teleprompter with the base of the teleprompter on the build plate.
For the main body, I would only use supports for parts touching the buildplate.Mixing Frame Rates on the Same Timeline in Davinci Resolve 15Create With Tech2019-03-23 | Davinci Resolve 15 does not let you mix clips with different frame rates on the same timeline. This tutorial shows you how to get around this limitation.
It seems that this limitation has been fixed with the beta release of Davinci Resolve 16.Photographing in PublicCreate With Tech2019-03-19 | What are your rights when it comes to photographing in public? In this video I discuss the harassment that photographers sometimes get and what the law says about photographing in public.
This video is based on a lot of research and primarily a list of photographers' rights compiled by Bill Kellett: http://billkellett.ca
Here's a link to download the document.
http://www.reelstories.ca/Photographers-Rights.pdfDo You Need Permission to Fly a Drone Over Private Property?Create With Tech2019-03-10 | In this video I discuss whether you need to get permission to fly your drone over private property. I get clarification from Transport Canada.