Browse Source

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
pull/303/head
Michael Johnston 2 months ago committed by GitHub
parent
commit
2cbc7cc248
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 12
      week2/day5.ipynb

12
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",

Loading…
Cancel
Save