3

我已经开发了一个应用程序,我正在其中进行视频录制。一切都运行良好。但是当我以纵向录制视频时,视频将以 90 度旋转的形式出现。

我正在将此 xaml 用于视频

<Rectangle
        x:Name="viewfinderRectangle"
        Width="460"
        Height="661"
        HorizontalAlignment="Left"
        Canvas.Left="10" Canvas.Top="10"/>
        <MediaElement
        x:Name="VideoPlayer"                  
        Width="460"
        Height="661"
        AutoPlay="True"
        RenderTransformOrigin="0.5,0.5"
        VerticalAlignment="Center"
        HorizontalAlignment="Center"
        Stretch="Uniform"
        Canvas.Left="10" Canvas.Top="10">
                <MediaElement.Projection>
                    <PlaneProjection/>
                </MediaElement.Projection>
            </MediaElement>
4

1 回答 1

0

在开始录制之前,您应该使用以下属性。

private AudioVideoCaptureDevice VideoRecordingDevice;

VideoRecordingDevice.SetProperty(KnownCameraGeneralProperties.EncodeWithOrientation,    VideoRecordingDevice.SensorLocation == CameraSensorLocation.Back ? 90 : -90);

注意:请记住,它仅用于 wp8 或更高版本。

于 2015-01-12T11:26:27.327 回答