Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Consistency with file descriptor outputs #548

Merged
merged 2 commits into from Mar 6, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions pydub/audio_segment.py
Expand Up @@ -839,6 +839,7 @@ def export(self, out_f=None, format='mp3', codec=None, bitrate=None, parameters=

# for easy wav files, we're done (wav data is written directly to out_f)
if easy_wav:
out_f.seek(0)
return out_f

output = NamedTemporaryFile(mode="w+b", delete=False)
Expand Down