diff --git a/index.html b/index.html index 794cb0b..016ee4c 100644 --- a/index.html +++ b/index.html @@ -19,6 +19,7 @@ Table of Contents About this resource + Show/hide all recipes FFmpeg basics Advanced FFmpeg concepts Change container (rewrap) @@ -47,6 +48,7 @@ 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. + This page does not have search functionality, but you can open all recipes (second option in the sidebar) and use your browser's search tool (often ctrl+f or cmd+f) to perform a keyword search through all recipes. Tutorials For FFmpeg basics, check out the program’s official website. For instructions on how to install FFmpeg on Mac, Linux, and Windows, refer to Reto Kromer’s installation instructions. diff --git a/js/js.js b/js/js.js index 2b3b208..7ec79f6 100644 --- a/js/js.js +++ b/js/js.js @@ -18,4 +18,10 @@ $(document).ready(function() { $('#' + id).closest('div').find('.link').append("Link to this command: https://amiaopensource.github.io/ffmprovisr/index.html"+window.location.hash+""); }); + $('#open-all').on("click", function(){ + $('input[type=checkbox]').each(function(){ + this.checked = !this.checked; + }) + }); + });
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.
This page does not have search functionality, but you can open all recipes (second option in the sidebar) and use your browser's search tool (often ctrl+f or cmd+f) to perform a keyword search through all recipes.
For FFmpeg basics, check out the program’s official website.
For instructions on how to install FFmpeg on Mac, Linux, and Windows, refer to Reto Kromer’s installation instructions.