Results 1 to 7 of 7

Thread: How to turn a .mov film by 90 degrees?

  1. #1
    Join Date
    Jan 2013
    Beans
    3

    Question How to turn a .mov film by 90 degrees?

    Hello,

    I have a rather weird question:

    A friend of mine filmed me while boxing and kickboxing, and unfortunately (I do not know why he did this), he turned the camere 90 degrees clockwise.

    Now, to watch the films, I have to turn the monitor 90 degress anti-clockwise

    Is there a tool with which I can turn around a whole .mov film by 90 degrees?

    Thank you for any suggestions,
    Q.

  2. #2
    Join Date
    Dec 2006
    Beans
    7,349

    Re: How to turn a .mov film by 90 degrees?

    A short term solution with either SMPlayer or vlc is to rotate the video during playback (options exist with both vlc and SMPlayer), but I guess you wish to re-encode with the image rotated the correct way?
    You think that's air you're breathing now?

  3. #3
    Join Date
    Jan 2013
    Beans
    3

    Re: How to turn a .mov film by 90 degrees?

    Thanks for the short term solution, i did not now that these options exist in VLC; I will try this out tomorrow.

    And yes, I ultimately want a long term solution that I can send to other poeple.

    Thank you very much!

  4. #4
    Join Date
    May 2006
    Location
    Boston
    Beans
    1,918
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: How to turn a .mov film by 90 degrees?

    mplayer
    Code:
    mplayer -vf rotate 3 <myvideo>

    blog
    Donations BTC : 12FwoB7uAM5FnweykpR1AEEDVFaTLTYFkS
    DOUBLEPLUSGOOD!!

  5. #5
    Join Date
    Dec 2006
    Beans
    7,349

    Re: How to turn a .mov film by 90 degrees?

    The FFmpeg / avconv method would be to re-encode using the transpose filter:

    21.33 transpose
    http://libav.org/avconv.html#transpose

    so I guess you would be after:

    Code:
    -vf transpose=2
    If you are not yet an avconv ninja perhaps you could install avconv:

    Code:
    sudo apt-get install ffmpeg libavcodec-extra-53
    and then run the following against your input file:

    Code:
    avconv -i input.file
    (changing the name of input.file to match your own filename) and somebody can suggest a suitable commandline. Hope this helps?
    You think that's air you're breathing now?

  6. #6
    Join Date
    Jan 2013
    Beans
    3

    Re: How to turn a .mov film by 90 degrees?

    Thank you for everybody answering me in this thread. I ultimately found a free Windows solution, DVDVideoSoft.

    I could not install the packages mentioned above, at least not under Debian (I know this is an Ubuntu forum, but I work with Debian on my laptop in my leisure time, I use Ubuntu at work.)

    And I did not want to burden myself with compiling the packages.

    Thank you all!

  7. #7
    Join Date
    Dec 2006
    Beans
    7,349

    Re: How to turn a .mov film by 90 degrees?

    As long as you have solved the issue, one way or the other
    You think that's air you're breathing now?

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •