Hi, I wrote a program which will use ffmpeg to convert media files. Media files can be converted with this string array being passed in to Runtime.getRunT ime().exec:
String cmd[] = {ffmpeg path, "-i", input file, output file};
However with the above method I couldn't set any options like "-s 176x144" for the output file's resolution, meaning if I use the following string array:
String cmd[] ={ffmpeg path,...