-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVideoFile.cs
More file actions
52 lines (37 loc) · 1.17 KB
/
VideoFile.cs
File metadata and controls
52 lines (37 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
using CommunityToolkit.Mvvm.ComponentModel;
using FFMpegCore;
using System;
using System.Collections.Generic;
using Windows.Storage;
namespace Magnesium;
public partial class VideoFile : ObservableObject
{
[ObservableProperty]
public partial string Name { get; set; }
[ObservableProperty]
public partial TimeSpan Duration { get; set; }
[ObservableProperty]
public partial string FullPath { get; set; }
[ObservableProperty]
public partial string ThumbnailPath { get; set; }
[ObservableProperty]
public partial string Extension { get; set; }
[ObservableProperty]
public partial string OriginalSize { get; set; }
[ObservableProperty]
public partial string NewSize { get; set; }
[ObservableProperty]
public partial string SavedPercentage { get; set; }
[ObservableProperty]
public partial double Fps { get; set; }
[ObservableProperty]
public partial int AudioTracks { get; set; }
[ObservableProperty]
public partial DateTime DateCreated { get; set; }
[ObservableProperty]
public partial DateTime DateModified { get; set; }
[ObservableProperty]
public partial string Status { get; set; }
[ObservableProperty]
public partial bool IsConverting { get; set; }
}