From 22958ed9568010bda66d12d6c36631d641600c5d Mon Sep 17 00:00:00 2001 From: Ashley Blewer Date: Wed, 1 Mar 2017 22:21:50 -0500 Subject: [PATCH 1/3] adds audio testfile (sine wave) --- index.html | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 2a7144c..5025ebd 100644 --- a/index.html +++ b/index.html @@ -1233,7 +1233,7 @@ foreach ($file in $inputfiles) {
-

Test videos

+

Test files

@@ -1347,6 +1347,29 @@ foreach ($file in $inputfiles) {
+ + + + +

Other

From 8ebf23f17294ced0e7c44e11354320a327db8f18 Mon Sep 17 00:00:00 2001 From: Ashley Blewer Date: Thu, 2 Mar 2017 08:38:24 -0500 Subject: [PATCH 2/3] 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
From d02633b612228251d884e6871d51c74a93c8de34 Mon Sep 17 00:00:00 2001 From: Ashley Date: Thu, 2 Mar 2017 10:43:53 -0500 Subject: [PATCH 3/3] Lowercases sine wave (except when at start of sentence) --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 775521c..e1d0423 100644 --- a/index.html +++ b/index.html @@ -1354,7 +1354,7 @@ foreach ($file in $inputfiles) {