以下のようにコードでプロパティを観察しました
VideoProperties videoProperties = await file.Properties.GetVideoPropertiesAsync();
List<string> tmp = new List<string> { };
var fileProperties2 = await file.Properties.RetrievePropertiesAsync(tmp);
foreach (var p in fileProperties2)
{
Debug.WriteLine(p);
}
System.Video.Orientation
プロパティ " " が 2 つのビデオ ストリームと異なることに気付きました(MSFT カメラ ap が と でビデオを録画している場合) このプロパティを変更する方法はLandscape
ありPortrait
ますか? メディア タイプ
を使用できますか? MF_MT_XXX
(詳細プロパティは以下のショートカットです)(http://msdn.microsoft.com/zh-tw/library/windows/apps/hh452756.aspx)またはこのプロパティを変更する他の方法はありますか?
多くの方法を試しましたが、このプロパティを設定できませんでした。