Skip to content

A fork to record speaker output (system audio) with python. PyAudio with PortAudio for Windows | Extended | Loopback | WASAPI | Latest precompiled Version

License

Notifications You must be signed in to change notification settings

Geo-Joy/pyaudio_portaudio_loopback

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Precompiled & Extended | PyAudio with PortAudio for Windows

Used versions:
· PyAudio 0.2.11 | co 7090e25bcba41413bd7ce89aa73bc0efb1ae1ca1
· PortAudio V19 | co 1bdcb9e41357ec76d8cf73f9ef278202a3ea1e3b

Extensions:
· Support of Windows sound loopback: Record the output of your soundcard


This project is a fork of two open source projects. If you'd like, give them some love:


Usage

Exactly like the official PyAudio but with the extra option "as_loopback" which expects a boolean.

import pyaudio
p = pyaudio.PyAudio()
stream = p.open([...], as_loopback = True)

How to install?

You can find the precompiled ready to use images for windows x64 machine in the release section .




How to build? (go for this method only if you want to build from scratch for respective OS architecture)

Cygwin

You will need a working cygwin installation with basic developer tools and python.

Step 0

You might have to change all files to use LF line endings with

find . -type f -exec sed -i 's/\x0d//g' {} \+

Step 1

Change to /pyaudio/portaudio-v19 and type

./configure --with-winapi=wasapi --enable-static=yes --enable-shared=no
make loopback

To rebuild type

make clean
make loopback

Step 2

Change to /pyaudio and type

python setup.py install --static-link

Microsoft Visual Studio (2017)

You will need to include the python executable in PATH.

Step 1

  • Open the portaudio project located in pyaudio\portaudio-v19\build\msvc\portaudio.sln.

  • Open the project configuration and make sure that the configuration type is set to static library.

  • Select the build type Release and x64. Then build the project.

  • Make sure the build was succesful and the file pyaudio\portaudio-v19\build\msvc\x64\Release\portaudio.lib does exist.

Step 2

Open the PowerShell as administrator and change the directory. Then you can build and install pyaudio with portaudio:

cd <Location of the repository>\pyaudio_portaudio\pyaudio
python.exe .\setup.py install --static-link

Microsoft Visual Studio (2017) - 32 bit

For 32-bit support see instructions above and this issue: intxcc#8.

The code from that issue is merged now, but as I do not have a 32-bit version I can't verify it. Comment in the issue for further help.

Help!!

If you get errors, let me know. Thank you ♥

About

A fork to record speaker output (system audio) with python. PyAudio with PortAudio for Windows | Extended | Loopback | WASAPI | Latest precompiled Version

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 72.6%
  • C++ 12.0%
  • Shell 7.7%
  • Python 3.1%
  • Makefile 3.0%
  • Java 1.0%
  • Other 0.6%