Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -98,4 +98,7 @@ Grzegorz Kotfis
github: gkotfis

Pål Orby
github: orby
github: orby

Sagalpreet Singh
github: sagalpreet
2 changes: 1 addition & 1 deletion pydub/audio_segment.py
Original file line number Diff line number Diff line change
Expand Up @@ -873,7 +873,7 @@ def export(self, out_f=None, format='mp3', codec=None, bitrate=None, parameters=
return out_f

# wav with no ffmpeg parameters can just be written directly to out_f
easy_wav = format == "wav" and codec is None and parameters is None
easy_wav = format == "wav" and codec is None and parameters is None and tags is None

if easy_wav:
data = out_f
Expand Down