From 42be852d30f0afb949ca314b4901bbf6945cedb9 Mon Sep 17 00:00:00 2001 From: Tieson Trowbridge Date: Sat, 26 Mar 2022 19:17:10 -0400 Subject: [PATCH] Update README.md Minor formatting fix for Path Configuration / Option 2 - indented code fence not parsed as a closing code block by Github's Markdown processor. --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index df5679a..7ed60ae 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,6 @@ A .NET Standard FFMpeg/FFProbe wrapper for easily integrating media analysis and # API ## FFProbe - Use FFProbe to analyze media files: ```csharp @@ -22,12 +21,12 @@ or var mediaInfo = FFProbe.Analyse(inputPath); ``` - ## FFMpeg Use FFMpeg to convert your media files. Easily build your FFMpeg arguments using the fluent argument builder: Convert input file to h264/aac scaled to 720p w/ faststart, for web playback + ```csharp FFMpegArguments .FromFileInput(inputPath) @@ -193,7 +192,7 @@ await FFMpegArguments .Configure(options => options.WorkingDirectory = "./CurrentRunWorkingDir") .Configure(options => options.TemporaryFilesFolder = "./CurrentRunTmpFolder") .ProcessAsynchronously(); - ``` +``` ### Option 2