diff --git a/src/main.c b/src/main.c new file mode 100644 index 0000000..df6eab4 --- /dev/null +++ b/src/main.c @@ -0,0 +1,11 @@ + + +#include + +int main() { + FILE *ffmpeg = popen("ffmpeg -i ", "rw"); + if (!ffmpeg) return -1; + printf("hello world\n"); + pclose(ffmpeg); + return 0; +} \ No newline at end of file