Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
msalhab96 authored Feb 3, 2022
1 parent 0f5b769 commit 116dd40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ from audesc import WaveDescriber
file_path = 'my/path/to/file.wav'
aud_describer = WaveDescriber(file_path)
description = aud_describer.describe()
print(description)
print(str(description))
print(description.sampling_rate)
print(description.channels_count)
print(description.duration)
Expand All @@ -59,7 +59,7 @@ from audesc import WaveDescriber
file_path = 'my/path/to/file.flac'
aud_describer = WaveDescriber(file_path)
description = aud_describer.describe()
print(description)
print(str(description))
print(description.sampling_rate)
print(description.channels_count)
print(description.duration)
Expand Down

0 comments on commit 116dd40

Please sign in to comment.