Skip to content

Speech controlled pdf automation script for apple machines, using google speech recognition api in v1 and python

Notifications You must be signed in to change notification settings

BerkePalamutcu/speech-controlled-pdf-automation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

speech-controlled-pdf-automation

Speech controlled pdf automation script for apple machines, using google speech recognition api in v1 and python

Python Project Setup Guide with Google's Speech Recognition API

This guide will walk you through the process of setting up a Python project with Google's Speech Recognition API.

Prerequisites

  1. Python 3.6 or higher
  2. pip (Python package installer)
  3. virtualenv (Optional but recommended)

Step 1: Setting Up a Virtual Environment

First, we will set up a virtual environment. This step is optional but highly recommended to avoid conflicts between packages required by different projects.

Open a terminal and navigate to your project directory, then run the following commands:

# Install virtualenv if it's not installed
pip install virtualenv

# Create a new virtual environment named "env"
virtualenv env

# Activate the virtual environment
# On Windows, use:
env\Scripts\activate
# On Unix or MacOS, use:
source env/bin/activate

Step 2: Installing Required Packages

pip install SpeechRecognition pyaudio

Step 3: Running the application

To Run the application either compile the code to an executable or in terminal run python3 in the main.py. It will start execution of the application.

About

Speech controlled pdf automation script for apple machines, using google speech recognition api in v1 and python

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages