missing an option to rotate video window when making vertical video rotated. (to not rotate my head constantly)
Just wondering, who is providing you vertical videos that aren’t already oriented correctly? (and why? one wonders where they ultimately get uploaded and what happens to them…)
1 Like
lots of artists make videos in landscape and they rotate with top at right to fill the phone screen , then the user need to rotate the phone to see the video correctly, and put sound in this type of video is a nightmare for my head.
Try ffmpeg.
ffmpeg.exe -i $INPUTVIDEO -metadata:s:v rotate=“-90” -codec copy $OUTPUTVIDEO
or
ffmpeg.exe -i $INPUTVIDEO -c:v libx264 -vf “transpose=1” $OUTPUTVIDEO
1 Like