From 089725a7539464b46d0ad865137837ed215e811a Mon Sep 17 00:00:00 2001 From: kfrn Date: Tue, 17 Dec 2019 22:34:37 +1300 Subject: [PATCH 1/3] Crop video recipe: correct name/description of example images --- index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index b95696e..ea9c10d 100644 --- a/index.html +++ b/index.html @@ -804,13 +804,13 @@

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
-

The original frame, a screenshot of the SMPTE colorbars:

+

The original frame, a screenshot of Maggie Cheung in the film Hero:

VLC screenshot of Maggie Cheung -

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

+

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

VLC screenshot of Maggie Cheung, cropped from original -

Result of the command ffmpeg -i smpte_colorsbars.mov -vf "crop=500:500:0:0" output_file, appending :0:0 to crop from the top left corner:

+

Result of the command ffmpeg -i maggie.mov -vf "crop=500:500:0:0" output_file, appending :0:0 to crop from the top left corner:

VLC screenshot of Maggie Cheung, cropped from original -

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

+

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

VLC screenshot of Maggie Cheung, cropped from original From d184ed2fe93ed79be69f24c944405091e3ef9090 Mon Sep 17 00:00:00 2001 From: kfrn Date: Tue, 17 Dec 2019 22:36:47 +1300 Subject: [PATCH 2/3] Code style: remove trailing whitespace --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index ea9c10d..c193ca3 100644 --- a/index.html +++ b/index.html @@ -728,7 +728,7 @@ - + @@ -844,7 +844,7 @@ - +

Change or view audio properties

@@ -2801,7 +2801,7 @@
About flac tool
-

The flac tool is the tool created by the FLAC project to transcode to/from FLAC and to manipulate metadata in FLAC files. One advantage it has over other tools used to transcode into FLAC is the capability of embedding foreign metadata (such as BWF metadata). This means that it is possible to compress a BWF file into FLAC and maintain the ability to transcode back into an identical BWF, metadata and all. For a more detailed explanation, see Dave Rice's article on the topic, from which the following commands are adapted.

+

The flac tool is the tool created by the FLAC project to transcode to/from FLAC and to manipulate metadata in FLAC files. One advantage it has over other tools used to transcode into FLAC is the capability of embedding foreign metadata (such as BWF metadata). This means that it is possible to compress a BWF file into FLAC and maintain the ability to transcode back into an identical BWF, metadata and all. For a more detailed explanation, see Dave Rice's article on the topic, from which the following commands are adapted.

Transcode to FLAC

Use this command to transcode from WAV to FLAC while maintaining BWF metadata

flac --best --keep-foreign-metadata --preserve-modtime --verify input.wav

From 4359d6dd4a2c093c1e72db5b5b3f2e6658107638 Mon Sep 17 00:00:00 2001 From: kfrn Date: Tue, 17 Dec 2019 22:49:06 +1300 Subject: [PATCH 3/3] Update 'show/hide recipes' (expand/collapse) functionality Previously, it would expand the recipe if currently collapsed, and vice versa. Now, if any recipes are currently expanded, it will collapse all; otherwise, all recipes will be expanded. The 'expand all' functionality is necessary for full-text searching. --- index.html | 2 +- js/js.js | 22 ++++++++++++++++------ 2 files changed, 17 insertions(+), 7 deletions(-) diff --git a/index.html b/index.html index c193ca3..3cf4b3c 100644 --- a/index.html +++ b/index.html @@ -19,7 +19,7 @@