1

How do I download and install pydub module to use in Python 2.7 on Windows 7 machine?

What I found was the instructions for UNIX users only.

[I want to concatenate two audio files (.wma). I found no solution code using the built-in modules so I decided to use pydub instead.

However if there is an easier way to merge audio files, using built-in modules, I would be eager to know about it.]

qwerty
  • 13
  • 1
  • 7

1 Answers1

1

First install pip if you dont already have it

then do this:

pip install pydub

or

pip install git+https://github.com/jiaaro/pydub.git@master

or

git clone https://github.com/jiaaro/pydub.git
Community
  • 1
  • 1
cat
  • 17
  • 5