mirror of
https://github.com/tkmxqrdxddd/davinci-video-converter
synced 2026-03-29 23:35:32 +02:00
- Add .devcontainer/devcontainer.json for Podman development - Add shell.nix for Nix users - Refactor monolithic main.cpp into modular components: - parser: argument parsing - validator: configuration validation - converter: ffmpeg command building/execution - Update Makefile with proper dependencies and test target - Simplify build.sh to use make - Update README with development environment docs
11 lines
233 B
C++
11 lines
233 B
C++
#ifndef CONVERTER_HPP
|
|
#define CONVERTER_HPP
|
|
|
|
#include "config.hpp"
|
|
#include <string>
|
|
|
|
std::string build_ffmpeg_command(const Config& config);
|
|
int execute_conversion(const std::string& command, bool verbose);
|
|
|
|
#endif // CONVERTER_HPP
|