Ryan McCauley

Results 2 issues of Ryan McCauley

This pull request is associated with issue https://github.com/jiaaro/pydub/issues/784. The fix checks if the bitrate passed into the method is an int, and if it is, it recasts it as a...

### Steps to reproduce ``` from pydub import AudioSegment audio:AudioSegment = AudioSegment.from_file("./anyAudioFile.wav") audio.export(out_f="./anyAudioFile.mp3", format="mp3", bitrate=50049) # using str(50049) instead works as expected ``` ### Expected behavior Calling AudioSegment.export() with a...