JUST DO IT
[C#] Visual Studio에서 FFmpeg 설치하기 본문
● Visual Studio에서 FFmpeg 설치하기
보기 탭 > 터미널(개발자 PowerShell)을 열어 준 후
winget install "FFmpeg (Essentials Build)" >> 입력 후 Enter
>> 약관동의 'Y' 입력 후 Enter >> 설치완료
winget install "FFmpeg (Essentials Build)" 는 FFmpeg의 필수기능만을 설치하는 명령어로
다른버전의 FFmpeg가 필요하다면 winget search ffmpeg 명령어로 다른버전을 확인해볼 수 있다
여기저기 찾아보니 여러가지 설치방법이 있지만 VS에서는 이 방법이 제일 간단한 것 같다
아래 코드처럼 ProcessStartInfo를 생성해준 후 Process를 시작해주니 잘 작동되었다
ProcessStartInfo startInfo = new ProcessStartInfo // ProcessStartInfo 세팅값 설정
{
FileName = @"C:\Users\사용자\AppData\Local\Microsoft\WinGet\Links\ffmpeg.exe", // 설치된 ffmpeg.exe 경로
Arguments = arguments,
UseShellExecute = false,
CreateNoWindow = true,
RedirectStandardOutput = true,
RedirectStandardError = true
};
ffmpegProcess = new Process { StartInfo = startInfo }; // StartInfo 생성 후
ffmpegProcess.Start(); // ffmpegProcess 실행
'LANGUAGE > C#' 카테고리의 다른 글
[C#] textBox 패스워드 보이기/숨기기 (1) | 2024.03.20 |
---|---|
[C#] Visual Studio 줄맞춤 단축키 (0) | 2023.04.26 |
C# TextBox 줄바꿈 개행 (0) | 2022.06.17 |