From 2cbc7cc2489009b1875fe03bf4586a38f7fc3c7b Mon Sep 17 00:00:00 2001 From: Michael Johnston Date: Mon, 7 Apr 2025 20:23:35 -0700 Subject: [PATCH] Add winget installation instructions for ffmpeg Added section for an easier option to install FFmpeg on Windows using winget (default included in OS For Windows 10 v2004+ and Windows 11). Changed markdown formatting a little to use headers (h4/h5) instead of bolding --- week2/day5.ipynb | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/week2/day5.ipynb b/week2/day5.ipynb index 70cee59..8c85601 100644 --- a/week2/day5.ipynb +++ b/week2/day5.ipynb @@ -304,7 +304,15 @@ "\n", "If you have any problems running this code below (like a FileNotFound error, or a warning of a missing package), you may need to install FFmpeg, a very popular audio utility.\n", "\n", - "**For PC Users**\n", + "#### For PC Users\n", + "\n", + "##### Windows 10 version 2004 (or later) or Windows 11\n", + "\n", + "Using [Windows Package Manager](https://learn.microsoft.com/en-us/windows/package-manager/) which is included in Windows 10 version 2004 or later and Windows 11\n", + "\n", + "`winget install \"FFmpeg (Essentials Build)\"`\n", + "\n", + "##### Otherwise\n", "\n", "Detailed instructions are [here](https://chatgpt.com/share/6724efee-6b0c-8012-ac5e-72e2e3885905) and summary instructions:\n", "\n", @@ -323,7 +331,7 @@ "4. Open a new command prompt and run this to make sure it's installed OK\n", "`ffmpeg -version`\n", "\n", - "**For Mac Users**\n", + "#### For Mac Users\n", "\n", "1. Install homebrew if you don't have it already by running this in a Terminal window and following any instructions: \n", "`/bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)\"`\n",