How to create a movie in portrait orientation?

Good day
Today I took some movies on my iPhone in portait orientation. Now I wanted to stick them in iMovie together and ad some text etc. But sadly the project is now in landscape orientation and squeezed together with black edges.
Is it possible to change to fromat of the iMovie project from landscape to portait?
Thanks for your tipps!
C

Thanks for your input - but then I will have to cut it into pieces and end up with an landscape movie.
I would like to change the green cropping tool to portait...

Similar Messages

  • How to create a movie clip during runtime?

    I'm learning basic shooter games and my goal is to have a small circle movie clip (would it work as a movie clip?) spawn when the mouse button is pressed. I know how to add the code for the button being pressed, but I do not know how to create the object on demand. Can you please help me with this?

    For AS2, you right click the movieclip symbol in the library and select the Linkage... option.  In the panel that appears you select the first option (Export for Actionscript) and another is automatically selected.  Then you assign an Identifier for it in the field at the top.  To add that movieclip to the stage you use the attachMovie() method... for example...
    this.attachMovie("linkageIdentifier", "instanceName", this.getNextHighestDepth());
    In AS3 it is somewhat similar as far as assigning an Identifier, except you assign a Class name instead, and then add a new item to the stage as a new instance of the class... 
    var instanceName:ClassIdentifier = new ClassIdentifier();

  • Exchange 2010 - Archiving Policy tag (how to create dont move message)

    Hi guys!
    We have started to use functionality Archiving corporate Mailboxes.
    We have deleted all the default retention policies/tags and created 1 default which Will move all the messages which are older then 60 days.
    Soo default archive and retenetion policies are gone after deleting them.
    Now the idea is to create 1 more retention policy tag, that user would manually chose what they do not wish to be moved to archive mailboxes and stay and instead of that those messages must stay in the mailbox.
    Well we got stucked at how to create that kind of policy tag:
    any hints would be more then appreticiated.
    with best regards,
    Bostjan
    bostjanc

    Hi,
    Agree with Ed. We can't tag an item to stop it from being moved to archive.
    Here is an article which can help you to understand the retention policy and retention tag for your reference.
    Retention tags and retention policies
    http://technet.microsoft.com/en-gb/library/dd297955(v=exchg.150).aspx
    Hope this helps.
    Best regards,
    Belinda
    Belinda Ma
    TechNet Community Support

  • How to lock view controller in portrait orientation?

    I have made and app in storyboard with the ability to use portrait and landscape orientation. However, one view requires to be locked in the portrait orientation? How do i do this?

    It seems like this should work but it's not. Tell me if i placed this is the right location please. It goes in the ViewController.m file.
    - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
        self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
        if (self) {
            // Custom initialization
        return self;
    - (BOOL)shouldAutorotate
        return NO;
    - (void)viewDidLoad
        [super viewDidLoad];
    Is this the correct spot?
    Thanks!

  • How to create a movie file of java 3D animation without altering the code?

    Is there a way to create a movie file of a Java 3D animation without altering the source code of the Java 3D animation program???
    Because as what I observed, most of the forum recommends extracting the bufferedimages of the animation. And, then using the bufferedimages to do a movie file. In this way, I will need to add in new code in the animation program in order to extract the bufferedimages.
    So, is there an alternative way?
    My objective is write a program to create movie file of any Java 3D animation.
    Pls advise me. Thanks a million.

    I'm curious as to why FRAPS will record java3d and
    not a java2d app? is there something that Java3d
    sets that makes it recognizable by fraps? or?? could
    someone or messengers ( =D!) explain this for me?Seems that only in JDK 5.0 or later, does the 2D api automatically use a DirectX or OpenGL rendering pipeline (if available).
    Further, these automatic pipelines accelerate polygons and the like, but not low level Graphics2D bit blitting operations.
    There are JOGL apis that allow better control over acceleration, and are considered 'thread safe' (single threaded) whereas DirectX pipelines are not.
    Interesting demos of this here:
    https://jogl-demos.dev.java.net/applettest.html
    and
    http://www.hardcorepawn.com/RandomGL/
    Fraps (commercial) and Taksi (opensource) will reveal that you are actually using acceleration, since they intercept the pipeline at the openGL (and DirectX) level.

  • How to record a video in portrait orientation?

    I am developing an app which uses MediaCapture class to record videos. I want to give user freedom to record video in either portrait or landsapce by just rotating the device. Please note my app has fixed portrait orientation. Due
    to fixed orientation, I am using OrientationChanged event of class SimpleOrientationSensor.
    Now I have noticed that the portait video recorded in default camera app and in my app has some differences. You can see the difference in below given images. All the videos are in 720p resolution. The player images are of portrait
    locked orientation. The code is also given below. Can any one explain me what's wrong with my code to record the portrait video? Thanks!
    MediaCaptureInitializationSettings set;
    MediaCapture _camCapture;
    VideoRotation videoRotation = VideoRotation.None;
    bool _isRecording = false;
    // Camera resource disposal is handled properly
    private async Task InitializeCamera()
    try
    if (set == null)
    set = new MediaCaptureInitializationSettings();
    DeviceInformation deviceID = (await DeviceInformation.FindAllAsync(DeviceClass.VideoCapture))
    .FirstOrDefault(x => x.EnclosureLocation != null && x.EnclosureLocation.Panel == Windows.Devices.Enumeration.Panel.Back);
    if (deviceID != null)
    set.VideoDeviceId = deviceID.Id;
    _camCapture = new MediaCapture();
    await _camCapture.InitializeAsync(set);
    VideoView.Source = _camCapture; //VideoView is CaptureElement object in XAML
    _camCapture.SetPreviewRotation(VideoRotation.Clockwise90Degrees);
    await _camCapture.StartPreviewAsync();
    catch (Exception ex)
    private async void OrientationChanged(object sender, SimpleOrientationSensorOrientationChangedEventArgs e)
    try
    await Dispatcher.RunAsync(CoreDispatcherPriority.Normal, () =>
    DetectCurrentOrintation(e.Orientation);
    catch (Exception ex)
    private void DetectCurrentOrintation(SimpleOrientation orientation)
    try
    switch (orientation)
    case SimpleOrientation.NotRotated:
    videoRotation = VideoRotation.Clockwise90Degrees;
    break;
    case SimpleOrientation.Rotated90DegreesCounterclockwise:
    videoRotation = VideoRotation.None;
    break;
    case SimpleOrientation.Rotated180DegreesCounterclockwise:
    videoRotation = VideoRotation.Clockwise270Degrees;
    break;
    case SimpleOrientation.Rotated270DegreesCounterclockwise:
    videoRotation = VideoRotation.Clockwise180Degrees;
    break;
    default:
    break;
    catch (Exception ex)
    private async void btnRecordVideo_Click(object sender, RoutedEventArgs e)
    try
    if (!_isRecording)
    var _videoRecording = await MyFolderInLocalFolder.CreateFileAsync("testRecord.mp4", CreationCollisionOption.GenerateUniqueName);
    MediaEncodingProfile mEncode = MediaEncodingProfile.CreateMp4(VideoEncodingQuality.Auto);
    _isRecording = true;
    //Two videos are with SetRecordRotation(value) and
    //for two other I commeted out the line.
    _camCapture.SetRecordRotation(videoRotation);
    await _camCapture.StartRecordToStorageFileAsync(mEncode, _videoRecording);
    else
    await _camCapture.StopRecordAsync();
    _isRecording = false;
    catch (Exception ex)

    Hello,
    I would recommend that you modify your code to match the
    Media Capture sample's advanced capture scenario. Instead of using SimpleOrientationSensorOrientationChangedEventArgs.Orientation use Windows.Graphics.Display.DisplayInformation.
    Here is the code from the sample:
    private void DisplayInfo_OrientationChanged(Windows.Graphics.Display.DisplayInformation sender, object args)
    m_displayOrientation = sender.CurrentOrientation;
    OrientationChanged();
    private void PrepareForVideoRecording()
    try
    if (m_mediaCaptureMgr == null)
    return;
    bool counterclockwiseRotation = m_bReversePreviewRotation;
    if (m_bRotateVideoOnOrientationChange)
    m_mediaCaptureMgr.SetRecordRotation(VideoRotationLookup(m_displayOrientation, counterclockwiseRotation));
    else
    m_mediaCaptureMgr.SetRecordRotation(Windows.Media.Capture.VideoRotation.None);
    catch (Exception exception)
    ShowExceptionMessage(exception);
    private Windows.Media.Capture.VideoRotation VideoRotationLookup(
    Windows.Graphics.Display.DisplayOrientations displayOrientation,
    bool counterclockwise)
    switch (displayOrientation)
    case Windows.Graphics.Display.DisplayOrientations.Landscape:
    return Windows.Media.Capture.VideoRotation.None;
    case Windows.Graphics.Display.DisplayOrientations.Portrait:
    return (counterclockwise) ? Windows.Media.Capture.VideoRotation.Clockwise270Degrees :
    Windows.Media.Capture.VideoRotation.Clockwise90Degrees;
    case Windows.Graphics.Display.DisplayOrientations.LandscapeFlipped:
    return Windows.Media.Capture.VideoRotation.Clockwise180Degrees;
    case Windows.Graphics.Display.DisplayOrientations.PortraitFlipped:
    return (counterclockwise) ? Windows.Media.Capture.VideoRotation.Clockwise90Degrees :
    Windows.Media.Capture.VideoRotation.Clockwise270Degrees;
    default:
    return Windows.Media.Capture.VideoRotation.None;
    I hope this helps,
    James
    Windows SDK Technologies - Microsoft Developer Services - http://blogs.msdn.com/mediasdkstuff/

  • How do you print calendar in portrait orientation

    how do you change the print orientation of the calendar from landscape to portrait? -- richard

    Hi macshine and all others that wanted to figure this one out,
    This one plagued me as well and through 15 different threads giving old info that is no longer relevant I finally figued it out.
    You need to create an 8.5x8.5 paper size.  From Safari or most any program (except calendar) select print.  In the printer options there is a pull down menu called "paper size".  It's most likely already selected "US Leter".  Select "Mange Custom Sizes" and create a new paper size.  Call it whatever you want.  Make the paper size 8.5in x 8.5in and hit okay.
    What you are doing is tricking the progam with this option.  If you made a 8.5 in wide by 11 tall paper size it would still set it up in landscape.  When you select your new square option it throws it off and forces everything into a 8.5 inch wide page.  Now go back to the paper size pull down menu and select US letter.  Don't know why, but it now lays eveything out in portrait mode.  You will need to select your square paper size first and then the US letter size everytime you want to print in portrait.
    I hope this helps.

  • How to create a Movie that spans multiple Events?

    in iMovie 10, they have intermingled the concepts of Projects (i.e. Movies) and Events to the point it makes no sense to me.  I have 6 vacation Events.  One Event for each location of the vacation.  How does Apple suggest I create a single movie project of my vacation?  I tried creating a 7th Event, just to hold the movie, but I can't seem to add clips from the other events into that one.   I suppose I could copy them into the 7th event, but I don't really want duplicate clips taking up disk space.  What's the best practice with this new categorization?

    joe bloe premiere wrote:
    In the New Sequence dialog, click on the Settings tab.
    Change the Editing Mode to Custom, and then you can
    change whatever parameters you like.
    Tried just that and only get crashes.
    1) Took any of the Presets, changed the size to 800x....crash
    2) Took any of the Presets, changed the size to 800x.600 and then the fps to 10...crash
    3) Took any of the Presets, changed the size to 800x.600 and then the fps to 10...got a message that a preset with those parameters doesnt exist and that I have to make a new one OK...I went to SAVE PRESET, gave it a name and CRASH
    4) Took any of the Presets, changed the size to 800x.600 and then the fps to 10...got a message that a preset with those parameters doesnt exist and that I have to make a new one OK...I went to SAVE PRESET, gave it a name and CRASH again and again...
    Working with Windows 7 Home Premium 64 bit

  • How to create editable .mov files from After Effects

    Hi,
    I am creating videos for my clients using after effects.
    The requirment is that they should be able to edit the .mov files e.g adding their company name, text or logo without using after effects without losing any effects.
    How can I accomplish this?
    Thanks....

    Unfortunately,
    1.Baljeet S. Juneja, 
    Jun 18, 2012 1:36 PM   in reply to leesando
    Report
    Editing video is not possible with Photoshop Elements.
    Photoshop Elements is for photo editing
    In order to edit videos , you should use Premiere Elements or Premiere Pro
    However, Adobe does offer a combined package of Photoshop Elements and Adobe Premiere Elements, which might work perfectly for someone who just needs the most basic tools for editing both photos and video.

  • How to create a movie for iPhone with multiple Subtitles?

    Hey there,
    I'd like to watch some of my DVDs on my iphone to learn englisch. Therefore I'd like to be able to switch between German and englisch subtitles and of course have a german and englisch audio. is that possible?

    hello,
    it is not officially supported. however, it can be done when you write your own makefile. how to call the compiler and necessary flags and so on see the "build results" output of xcode. it's like
    /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.0 -x objective-c -arch i386
    and so on. after you created the object files you create the library with the archive tool, like
    ar -crv libwhatever.a Dada.o Bubu.o AnotherOne.o
    regards,
    sebastian mecklenburg

  • How to create a movie-sequense with buttons?

    I want to do a click-forward sequence with three movie-clips (avi). So when i click 1, the first movie loads (ball moves), and click 2 then movie 2 loads. How do I import the movies and how does the script look like? And what format should the movies be exported in?
    At the same time, i want som text to pop ud, when the movies end. How can I tell Animate to detect end of a movie?
    Hope for your help
    Best regards
    Martin

    I'm curious as to why FRAPS will record java3d and
    not a java2d app? is there something that Java3d
    sets that makes it recognizable by fraps? or?? could
    someone or messengers ( =D!) explain this for me?Seems that only in JDK 5.0 or later, does the 2D api automatically use a DirectX or OpenGL rendering pipeline (if available).
    Further, these automatic pipelines accelerate polygons and the like, but not low level Graphics2D bit blitting operations.
    There are JOGL apis that allow better control over acceleration, and are considered 'thread safe' (single threaded) whereas DirectX pipelines are not.
    Interesting demos of this here:
    https://jogl-demos.dev.java.net/applettest.html
    and
    http://www.hardcorepawn.com/RandomGL/
    Fraps (commercial) and Taksi (opensource) will reveal that you are actually using acceleration, since they intercept the pipeline at the openGL (and DirectX) level.

  • How to create QT movie with two subtitle streams

    What would be the best (and fast) way to create a QT movie (or mpeg-4) to convert the DVD project created in DVDSP with two subtitle streams?
    Both subtitle streams were created by importing TIFF files with the corresponding timing file. One stream is for the dialogue (Subtitle Track 1 non-forced) and the other stream is for the onscreen text translation (Sub Track 2 forced). There are times when the T/C of the two tracks overlap, as someone is talking while an onscreen text is displayed.
    Is it possible to create a QT movie or any other video format with both streams showing?
    Thank you for your help.

    I have discovered that I can merge two QT movies (Each movie with one stream of subtitles/TIFF files) by copying all tracks from one movie to the other. Now I have a QT movie with two subtitle streams. Each subtitle stream is in a video track as animation.
    Thank you for your help.

  • How to get 2560x1080 resolution in Portrait orientation in a 21:9 monitor

    Recently, i just own a monitor with the ratio 21:9. I found that when i change my orientation to 90 degrees, it only has 1920x1080 resolution and there is no 2560x1080 resolution so the screen is streched. How can i fix this problem?

    Try the Thunderbolt connection.
    <http://store.apple.com/us/product/MD861ZM/A/apple-thunderbolt-cable-20-m>

  • How to create QuickTime movie from JPEG and Audio file

    My Sony Cybershot allows me to record audio files for each picture. When I'm reviewing the images, I can listen to the audio. However, these files are stored separately as a JPEG and a WAV file (having identical filenames, diff extensions.
    Is there an easy way to merge these two files into a QT Movie?
    Can this be automated?
    Does anyone know of an app or script that can do this?
    Many thanks,
    Shayne

    None specific for your task that I know of.
    You'll first want to convert the silly .wav audio file (match the capture settings) to a more modern format which will also reduce its file size by a factor of ten.
    http://www.apple.com/applescript/quicktime/
    For some AppleScripts. Many no longer work with Tiger and QuickTime 7, however.
    It may take some time but if you have hundreds to make it (Automator) can help speed up your workflow.
    http://www.apple.com/downloads/macosx/automator/

  • How to create movement type

    hai sap gurus,
    can u clarify my problem,
    how to create a movement type and where we assign that movement type to gl account
    clarify please

    Hi Ram,
    You can create Movement type in OMJJ transaction by Copying the existing mvt types. Once you copy the mvt type all the details from the existing mvt type will be copied to new mvt type.
    Based on the Account grouping the system will identify the G/L accounts. You can check this OMJJ transaction you will get better idea.
    One more thing why you need the new mvt type, if it is really required then go for new mvt type otherwise use the SAP standard Mvt type which will serve all the purposes.
    rgds
    Chidanand

Maybe you are looking for