From 7e7942149e1ae040f7773b9440996b09858fcb58 Mon Sep 17 00:00:00 2001 From: Reto Kromer Date: Thu, 19 Oct 2017 19:42:31 +0200 Subject: [PATCH] nits - capitalise abbreviation - uniformise style --- index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index 9fc2e32..cdb3bda 100644 --- a/index.html +++ b/index.html @@ -41,7 +41,7 @@
-

About ffmprovisr

+

About ffmprovisr

Making FFmpeg Easier

FFmpeg is a powerful tool for manipulating audiovisual files. Unfortunately, it also has a steep learning curve, especially for users unfamiliar with a command line interface. This app helps users through the command generation process so that more people can reap the benefits of FFmpeg.

Each button displays helpful information about how to perform a wide variety of tasks using FFmpeg. To use this site, click on the task you would like to perform. A new window will open up with a sample command and a description of how that command works. You can copy this command and understand how the command works with a breakdown of each of the flags.

@@ -1636,7 +1636,7 @@

Check FFV1 Version 3 fixity

ffmpeg -report -i input_file -f null -

This decodes your video and displays any CRC checksum mismatches. These errors will display in your terminal like this: [ffv1 @ 0x1b04660] CRC mismatch 350FBD8A!at 0.272000 seconds

-

Frame crcs are enabled by default in FFV1 Version 3.

+

Frame CRCs are enabled by default in FFV1 Version 3.

ffmpeg
starts the command
-report
Dump full command line and console output to a file named ffmpeg-YYYYMMDD-HHMMSS.log in the current directory. It also implies -loglevel verbose.
@@ -1775,7 +1775,7 @@
ffmpeg
starts the command
-f lavfi
tells FFmpeg to use the Libavfilter input virtual device
-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"
+
-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
@@ -1795,7 +1795,7 @@
-i smptebars=size=720x576:rate=25
asks for the smptebars test filter as input. Adjusting the size and rate options allows you to choose a specific frame size and framerate.
-f lavfi
use libavfilter again, but now for audio
-i "sine=frequency=1000:sample_rate=48000"
Sets the signal to 1000 Hz, sampling at 48 kHz.
-
-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"
+
-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"
-t 10
specifies recording time of 10 seconds
-c:v ffv1
Encodes to FFV1. Alter this setting to set your desired codec.
output_file.wav
path, name and extension of the output file