We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9351b2 commit d2c617bCopy full SHA for d2c617b
tests/pydub_audio_segment_test.py
@@ -20,8 +20,12 @@
20
class TestPydubAudioSegment:
21
22
def test_from_file(self):
23
-
24
data_dir = os.path.dirname(os.path.realpath(__file__))
25
filename = os.path.join(data_dir, "data/this_is_a_test.mp3")
26
audio_segment = AudioSegment.from_file(filename)
27
assert 4.493061224489796 == audio_segment.duration_seconds
+
28
+ def test_from_silent(self):
29
+ DURATION = 2 * 1000
30
+ audio_segment = AudioSegment.silent(duration=DURATION)
31
+ assert 2 == audio_segment.duration_seconds
0 commit comments