Skip to content

Commit b970bda

Browse files
Fix error in Audio Decoder example (#739)
Co-authored-by: Nicolas Hug <[email protected]>
1 parent c451f3c commit b970bda

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/audio_decoding.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ def play_audio(samples):
9494
#
9595
# We can also decode the samples into a desired sample rate using the
9696
# ``sample_rate`` parameter of :class:`~torchcodec.decoders.AudioDecoder`. The
97-
# ouput will sound the same, but note that the number of samples greatly
98-
# increased:
97+
# ouput will sound similar, but note that the number of samples greatly
98+
# decreased:```
9999

100100
decoder = AudioDecoder(raw_audio_bytes, sample_rate=16_000)
101101
samples = decoder.get_all_samples()

0 commit comments

Comments
 (0)