diff --git a/index.html b/index.html index b934d2a..bac1f07 100644 --- a/index.html +++ b/index.html @@ -412,6 +412,27 @@ + + + +
+

Transcode to H.265/HEVC

+

ffmpeg -i input_file -acodec libvorbis -b:v 690k output_file

+

This command takes an input file and transcodes it to Ogg/Theora in an .ogv wrapper with 690k video bitrate.

+

Note: FFmpeg must be installed with support for Ogg Theora. If you are using Homebrew, you can check with brew info ffmpeg and then update it with brew upgrade ffmpeg --with-theora --with-libvorbis if necessary.

+
+
ffmpeg
starts the command
+
-i input file
path, name and extension of the input file
+
-acodec libvorbis
tells FFmpeg to encode the audio using libvorbis
+
-b:v 690k
specifies the 690k video bitrate
+
output file
path, name and extension of the output file (make sure to include the .ogv filename suffix)
+
+

This recipe is based on Paul Rouget's recipes.

+ +
+ + +