VideoHelp Forum
+ Reply to Thread
Results 1 to 3 of 3
Thread
  1. Tom T
    Join Date
    Nov 2024
    Location
    Columbus, Ohio
    Search Comp PM
    I am using Corel VideoStudio 2023 Ultimate and would like to know how to "free" rotate (like 10 degrees) a video or image. I can only find options for 90 degree left and right rotate.
    Image
    [Attachment 83800 - Click to enlarge]
    Quote Quote  
  2. Member
    Join Date
    Mar 2008
    Location
    United States
    Search Comp PM
    There's an Avisynth plugin that can do it, can pick any arbitrary amount,
    but the problem becomes what to do about the corners. Here's a sample with a 10 degrees clockwise rotation.
    I guess you could crop it out
    http://www.avisynth.nl/index.php/Rotate
    Image Attached Thumbnails Click image for larger version

Name:	rotated.jpg
Views:	5
Size:	100.2 KB
ID:	83803  

    Quote Quote  
  3. You may try using ffmpeg:

    Rotating:
    Code:
    ffmpeg -i "your source" -vf "rotate='0.2*PI*t:ow=hypot(iw,ih):oh=ow:fillcolor=yellow',scale=w=-2:h=720,setsar=sar=1/1" -c:a copy -c:v libx264 -crf 20 "rotated.mp4"

    or for a fix angle, say rotate by 30 degrees:
    Code:
    ffmpeg -i "your source" -vf "rotate='30*PI/180:ow=hypot(iw,ih):oh=ow:fillcolor=yellow',scale=w=-2:h=720,setsar=sar=1/1" -c:a copy -c:v libx264 -crf 20 "rotated.mp4"
    Image Attached Files
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!