Skip to content

Commit d2c617b

Browse files
committed
duration
1 parent a9351b2 commit d2c617b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tests/pydub_audio_segment_test.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,12 @@
2020
class TestPydubAudioSegment:
2121

2222
def test_from_file(self):
23-
2423
data_dir = os.path.dirname(os.path.realpath(__file__))
2524
filename = os.path.join(data_dir, "data/this_is_a_test.mp3")
2625
audio_segment = AudioSegment.from_file(filename)
2726
assert 4.493061224489796 == audio_segment.duration_seconds
27+
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

Comments
 (0)