I have downloaded the FFMPEG file and now have no idea what to do with it now it is in the downloads folder. I need it so I can convert amr to MP3 files Help please.
Asked
Active
Viewed 765 times
1
-
1Why did you download a unix tar for Windows? Go back & get the Windows zip – Tetsujin Jun 15 '19 at 16:17
-
1[Builds - Zeranoe FFmpeg](https://ffmpeg.zeranoe.com/builds/) – DavidPostill Jun 15 '19 at 17:00
1 Answers
1
Installing FFmpeg in Windows
- Download a static build from here.
- Use 7-Zip to unpack it in the folder of your choice.
Open a command prompt with administrator's rights.
NOTE: Use
CMD.exe, do not use Powershell! The syntax for accessing environment variables is different from the command shown in Step 4 - running it in Powershell will overwrite your System PATH with a bad value.Run the command (see note below; in Win7 and Win10, you might want to use the Environmental Variables area of the Windows Control Panel to update PATH):
setx /M PATH "path\to\ffmpeg\bin;%PATH%"Do not run
setxif you have more than 1024 characters in your systemPATHvariable.See this post on SuperUser that discusses alternatives. Be sure to alter the command so that path\to reflects the folder path from your root to
ffmpeg\bin.
Source Installing FFmpeg · adaptlearning/adapt_authoring Wiki · GitHub
DavidPostill
- 153,128
- 77
- 353
- 394