Video.Convertor
is a C# console application designed to simplify the process of converting high-resolution videos to lower resolutions using FFmpeg. Ideal for efficient video resizing.
- FFmpeg: Must be installed on your system. Download from FFmpeg's official website.
- .NET 6 SDK: Required for running the application. Download from Microsoft's .NET download page.
- Clone the repository:
git clone https://github.com/Hu238n/Video.Convertor
- Navigate to the cloned directory.
Before running the application, configure the following in Program.cs
:
videoPath
: Path to the input video file.saveIn
: Path for the output video.ffmpegPath
: Path to your FFmpeg executable.
To run the application:
- Open a command line or terminal.
- Navigate to the project directory.
- Execute using .NET CLI:
dotnet run
Leverages FFmpeg for video processing. Initializes a process to run FFmpeg with specified arguments for video resolution conversion.
Contributions are welcome. Please fork the repository and submit pull requests for any enhancements or fixes.