From 8ebf23f17294ced0e7c44e11354320a327db8f18 Mon Sep 17 00:00:00 2001 From: Ashley Blewer Date: Thu, 2 Mar 2017 08:38:24 -0500 Subject: [PATCH] removes typos in sine wave --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 5025ebd..775521c 100644 --- a/index.html +++ b/index.html @@ -1359,8 +1359,8 @@ foreach ($file in $inputfiles) {
ffmpeg
starts the command
-f lavfi
tells ffmpeg to use the libavfilter input virtual device [more]
-
-i "sine=frequency=1000:sample_rate=48000:duration=5"
Sets the signal to 1000 Hz, sampling at 48kHz, and for 5 seconds
-
-c:a pcm_s16le
encodes the audio codec in pcm_s16le (the default encoding for wav files). pcm represents pulse-code moderation format (raw bytes), 16 means 16 bits per sample, and le means "little endian"
+
-i "sine=frequency=1000:sample_rate=48000:duration=5"
Sets the signal to 1000 Hz, sampling at 48 kHz, and for 5 seconds
+
-c:a pcm_s16le
encodes the audio codec in pcm_s16le (the default encoding for wav files). pcm represents pulse-code modulation format (raw bytes), 16 means 16 bits per sample, and le means "little endian"
output_file.wav
path, name and extension of the output file