From 8ee0b60061b564678a120120c9cd89aa33f184e9 Mon Sep 17 00:00:00 2001 From: Reto Kromer Date: Sun, 12 Feb 2017 11:30:04 +0100 Subject: [PATCH] unify HTML5 --- index.html | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/index.html b/index.html index 70b982c..23788f7 100644 --- a/index.html +++ b/index.html @@ -381,21 +381,20 @@

Images to GIF

+ -
@@ -879,8 +878,8 @@

Generate two access MP3s from input. One with appended audio (such as copyri

This script allows you to generate two derivative audio files from a master while appending audio from a seperate file (for example a copyright or institutional notice) to one of them.

ffmpeg
starts the command
-
-i input_file
path, name and extension of the input file (The master file)
-
-i input_file_to_append
path, name and extension of the input file (The file to be appended to access file)
+
-i input_file
path, name and extension of the input file (the master file)
+
-i input_file_to_append
path, name and extension of the input file (the file to be appended to access file)
-filter_complex
enables the complex filtering to manage splitting the input to two audio streams
[0:a:0]asplit=2[a][b];
asplit allows audio streams to be split up for seperate manipulation. This command splits the audio from the first input (the master file) into two streams "a" and "b"
[b]afifo[bb];
this buffers the stream "b" to help prevent dropped samples and renames stream to "bb"