Open bhavinphoenix opened 4 years ago
use -noautorotate flag for disable FFMPEG auto rotate feature
execFFmpegBinary(new String[]{"-noautorotate","-y", "-i", path, "-s", "160x120", "-r", "25", "-vcodec", "mpeg4", "-b:v", "150k", "-b:a", "48000", "-ac", "2", "-ar", "22050", filePath});
what if i want default height and width of video?
execFFmpegBinary(new String[]{"-noautorotate", "-y", "-i", path, "-s", "800x600", "-r", "25", "-vcodec", "mpeg4", "-b:v", "150k", "-b:a", "48000", "-ac", "2", "-ar", "22050", filePath});
execFFmpegBinary(new String[]{"-y", "-i", path, "-s", "160x120", "-r", "25", "-vcodec", "mpeg4", "-b:v", "150k", "-b:a", "48000", "-ac", "2", "-ar", "22050", filePath});
auto rotate after compress is there any solution?