I Used AI and RPA to Automate Voice Notes Into a Daily Journal!
Power Automate RPA
Feb 11, 2025 5:36 PM

I Used AI and RPA to Automate Voice Notes Into a Daily Journal!

by HubSite 365 about Anders Jensen [MVP]

RPA Teacher. Follow along👆 35,000+ YouTube Subscribers. Microsoft MVP. 2 x UiPath MVP.

Citizen DeveloperPower Automate RPALearning Selection

AI, RPA, OpenAI Whisper, Power Automate Desktop, AutoHotkey

Key insights

  • AI and RPA Automation: The video demonstrates how to automate voice notes into a daily journal using AI and Robotic Process Automation (RPA) tools like OpenAI Whisper, Power Automate Desktop, and AutoHotkey.

  • OpenAI Whisper: This is an advanced speech-to-text model by OpenAI that provides accurate transcriptions, even in noisy environments. It is used locally for free and supports multiple languages.

  • Power Automate Desktop: Microsoft's RPA tool that automates tasks across applications. It organizes transcribed text into structured journal entries by watching folders for new recordings and appending text to a master document.

  • AutoHotkey Scripting: A scripting language used to automate repetitive tasks with keyboard shortcuts. It formats journal entries automatically and inserts timestamps for easy reference.

  • Benefits of Automation: Automating journaling saves time, ensures consistency, captures ideas effortlessly as voice memos, and organizes thoughts without manual effort.

  • Step-by-Step Process: The system involves recording voice notes, transcribing audio with OpenAI Whisper using Python scripts, handling files with Power Automate Desktop, and formatting journals with AutoHotkey scripts.

How AI and RPA Transform Voice Notes into an Automated Daily Journal

In the fast-paced world of 2025, capturing thoughts on the go is essential. Many people rely on voice notes to jot down ideas, reflections, and important moments. However, these recordings often remain unused. If you've ever wished for a way to automatically convert your voice notes into a structured daily journal without lifting a finger, Anders Jensen's latest YouTube video offers an innovative solution.

In his video, Anders demonstrates how he built an AI-powered, fully automated workflow that listens to voice memos, transcribes them into text, organizes the entries, and creates a neatly formatted daily journal—all without any manual effort. The best part? It’s completely free to set up! This article will walk you through the process, exploring the tools and techniques used to achieve this automation.

Why Automate Your Daily Journal?

Keeping a journal is a fantastic habit, aiding in self-reflection, productivity, and even mental health. However, manually writing down notes or typing them out at the end of a long day can be time-consuming and tedious. By automating the process, you can:

  • Capture ideas effortlessly as voice memos.
  • Save time by letting AI handle the transcription.
  • Ensure consistency in journaling.
  • Organize your thoughts without manually sifting through recordings.

With the right combination of AI transcription, Power Automate, and scripting, this becomes a seamless experience.

The Tools That Make It Happen

To transform voice notes into a structured daily journal, Anders used the following tools:

  • OpenAI Whisper: OpenAI’s advanced speech-to-text model provides highly accurate transcriptions, even for noisy recordings. It’s free to use locally and works across multiple languages.
  • Power Automate Desktop: Microsoft’s RPA tool automates tasks across applications, helping move the transcribed text, organize it, and create structured journal entries.
  • AutoHotkey: A scripting language that automates repetitive tasks, used to trigger recordings, format text, and streamline workflows with simple keyboard shortcuts.

Step-by-Step: Building the Automated Journaling System

Step 1: Recording Voice Notes

Anders uses his phone’s built-in voice recorder or an app like Otter.ai or Easy Voice Recorder to quickly capture thoughts throughout the day. This step ensures that all ideas and reflections are documented in real-time.

Step 2: Transcribing Audio with OpenAI Whisper

OpenAI Whisper is run on a local machine to transcribe audio files into text. This can be done using a simple Python script:

import whisper

model = whisper.load_model("base")  # Load the Whisper model
result = model.transcribe("mynote.wav")  # Transcribe audio file
print(result["text"])  # Print the transcribed text

This script efficiently converts spoken words into written text, ready for further processing.

Step 3: Automating File Handling with Power Automate Desktop

Power Automate Desktop plays a crucial role in managing the transcribed text. It:

  • Watches a folder for new voice recordings.
  • Runs Whisper to transcribe audio into text.
  • Saves the text file in a Journal Entries folder.
  • Appends the text to a master journal document.

This automation streamlines the flow of information, ensuring that all entries are properly documented.

Step 4: Formatting the Journal with AutoHotkey

AutoHotkey runs in the background to format the journal neatly. Here’s an example script to insert timestamps and format text automatically:

^j::  ; Press Ctrl + J to insert a timestamp
FormatTime, CurrentDateTime,, yyyy-MM-dd HH:mm:ss
SendInput %CurrentDateTime% - 
return

This simple script ensures that every journal entry is properly time-stamped for easy reference, making the journal more organized and user-friendly.

The Final Output: A Neatly Organized Daily Journal

At the end of each day, Anders' system compiles all transcribed voice notes into a structured format like this:

📅 Journal - February 10, 2025

🕒 09:15 AM - "Had an idea for a new project. Need to research more on AI..."

This automated journaling system not only saves time but also enhances productivity by ensuring that all thoughts and ideas are captured and organized efficiently. By leveraging AI and RPA, Anders Jensen has created a powerful tool that can benefit anyone looking to streamline their notetaking and journaling process.

In conclusion, the integration of AI and RPA in daily tasks is not just a futuristic concept but a practical solution available today. By following Anders' step-by-step guide, you too can harness the power of technology to transform your voice notes into a comprehensive daily journal, enhancing both personal and professional productivity.

Power Automate RPA - VoiceNote Pro: Transforming Voice Notes Into a Seamless Daily Journal with AI & RPA!

Keywords

AI automation voice notes RPA daily journal automate journaling AI-driven productivity digital transformation voice-to-text