Rotate your video with ffmpeg
You might run into an issue with the orientation on your videos at times and yeah it is super easy to rotate your video with a free and open source utility ffmpeg.
Here is how :
ffmpeg -i input.mp4 -vf "transpose=1" output.mp4
Where