lkakbp.blogg.se

Ffmpeg scale and stretch
Ffmpeg scale and stretch













ffmpeg scale and stretch ffmpeg scale and stretch

If I get the info for the generated video using ffmpeg -i I get the following result: ffmpeg -i video_1920_886.mp4įfmpeg version 3.4.2 Copyright (c) 2000-2018 the FFmpeg developersīuilt with Apple LLVM version 9.0.0 (clang-900.0.39.2)Ĭonfiguration: -prefix=/usr/local/Cellar/ffmpeg/3.4.2 -enable-shared -enable-pthreads -enable-version3 -enable-hardcoded-tables -enable-avresample -cc=clang -host-cflags= -host-ldflags= -disable-jack -enable-gpl -enable-libmp3lame -enable-libx264 -enable-libxvid -enable-opencl -enable-videotoolbox -disable-lzma I need to generate another video with the resolution 1920x886 for supporting 6.5" devices, so I used the following command to perform the scaling: ffmpeg -i video_1920_1080.mp4 -vf scale=1920:886 -c:a copy video_1920_886.mp4 I have a main video, with resolution 1920x1080, which I was able to upload. Depending on the device type, the AppStore requires certain video resolutions. I'm generating an app preview video to send to the AppStore.















Ffmpeg scale and stretch