About me
home
Portfolio
home

ffmpeg 설치

윈도우 환경

powershell을 켜서 다음 명령어 입력하여 ffmpeg 설치
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
PowerShell
복사
irm get.scoop.sh | iex
PowerShell
복사
scoop install ffmpeg
PowerShell
복사
파이썬 터미널에서 아래 명령어 입력
pip install ffmpeg-python
Python
복사

Ubuntu 환경

sudo apt update && sudo apt install ffmpeg
Bash
복사