Video rotation

Hi I have a bunch of videos that are upside down. they are mp4 from Estonia. Any way to rotate them so i can see them right side up in the viewer pane? Thanks!

Assuming you want to rotate the files so they stay rotated (not just rotate the view), it's not something built into Opus but you can make buttons which run a free tool like ffmpeg.exe on the selected videos to rotate them from Opus.

This Stack Overflow thread looks useful for info on the arguments to make ffmpeg.exe rotate things:
stackoverflow.com/questions/3937 ... ith-ffmpeg

If you want to go Leo's route and re-encode the files, these are my 3 buttons I use to rotate videos using HandBrake. Adjust the path to HandBrakeCLI.exe and settings as needed.

Rotate +90

@disablenosel @nodeselect @sync /dopusdata\Scripts\HandBrake\HandBrakeCLI.exe --input {filepath$} --output {filepath$|noext}-rotated+90.mp4 --format mp4 --decomb --loose-anamorphic --encoder x264 --quality 20 --crop 0:0:0:0 --encoder-preset=slow --encoder-profile=main --aencoder av_aac --mixdown stereo --drc 0 --gain 0 --arate Auto --encoder-level="4.0" --verbose=1 --rotate=4

Rotate +180

@disablenosel @nodeselect @sync /dopusdata\Scripts\HandBrake\HandBrakeCLI.exe --input {filepath$} --output {filepath$|noext}-rotated+180.mp4 --format mp4 --decomb --loose-anamorphic --encoder x264 --quality 20 --crop 0:0:0:0 --encoder-preset=slow --encoder-profile=main --aencoder av_aac --mixdown stereo --drc 0 --gain 0 --arate Auto --encoder-level="4.0" --verbose=1 --rotate=3

Rotate -90

@disablenosel @nodeselect @sync /dopusdata\Scripts\HandBrake\HandBrakeCLI.exe --input {filepath$} --output {filepath$|noext}-rotated-90.mp4 --format mp4 --decomb --loose-anamorphic --encoder x264 --quality 20 --crop 0:0:0:0 --encoder-preset=slow --encoder-profile=main --aencoder av_aac --mixdown stereo --drc 0 --gain 0 --arate Auto --encoder-level="4.0" --verbose=1 --rotate=7