From c4bd6a9191946700c9d6cd11a04b295f2b20b470 Mon Sep 17 00:00:00 2001 From: Reto Kromer Date: Thu, 26 Sep 2019 18:04:55 +0200 Subject: [PATCH 1/2] add `h5` --- css/css.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css/css.css b/css/css.css index 8e9b8e8..48ad9dd 100644 --- a/css/css.css +++ b/css/css.css @@ -105,7 +105,7 @@ h2 { margin: 6px 0px 12px 0px; } -h3 { +h3, h5 { font-size: 1.5em; } From 9f6e6846e0a64f00794b3fe0a601e7c7c7369764 Mon Sep 17 00:00:00 2001 From: Reto Kromer Date: Thu, 26 Sep 2019 18:07:51 +0200 Subject: [PATCH 2/2] change `h3` to `h5` --- index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index bec6f28..85227a8 100644 --- a/index.html +++ b/index.html @@ -72,7 +72,7 @@
-

Basic structure of an FFmpeg command

+
Basic structure of an FFmpeg command

At its basis, an FFmpeg command is relatively simple. After you have installed FFmpeg (see instructions here), the program is invoked simply by typing ffmpeg at the command prompt.

Subsequently, each instruction that you supply to FFmpeg is actually a pair: a flag, which designates the type of action you want to carry out; and then the specifics of that action. Flags are always prepended with a hyphen.

For example, in the instruction -i input_file.ext, the -i flag tells FFmpeg that you are supplying an input file, and input_file.ext states which file it is.

@@ -111,7 +111,7 @@
-

Codec Defaults

+
Codec Defaults

Unless specified, FFmpeg will automatically set codec choices and codec parameters based off of internal defaults. These defaults are applied based on the file type used in the output (for example .mov or .wav).

When creating or transcoding files with FFmpeg, it is important to consider codec settings for both audio and video, as the default options may not be desirable in your particular context. The following is a brief list of codec defaults for some common file types:

    @@ -161,7 +161,7 @@
    -

    Stream mapping

    +
    Stream mapping

    Stream mapping is the practice of defining which of the streams (e.g., video or audio tracks) present in an input file will be present in the output file. FFmpeg recognizes five stream types:

    • a - audio
    • @@ -771,7 +771,7 @@

      It's also possible to specify the crop position by adding the x and y coordinates representing the top left of your cropped area to your crop filter, as such:

      ffmpeg -i input_file -vf "crop=width:height[:x_position:y_position]" output_file

      -

      Examples

      +
      Examples

      The original frame, a screenshot of the SMPTE colorbars:

      VLC screenshot of Maggie Cheung

      Result of the command ffmpeg -i smpte_colorsbars.mov -vf "crop=500:500" output_file: