Skip to content

Commit

Permalink
Modified: VideoMediaTypeNames.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
dgmjr committed Dec 28, 2023
1 parent 44681cf commit d6dbd60
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions Samples/VideoMediaTypeNames.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,18 @@ public static void Go()
public static class VideoMediaTypeNames
{
public const string Base = "video";
public const string Any = Base + "/" + "*";
public const string Mpeg = Base + "/" + "mpeg";
public const string Mpeg4 = Base + "/" + "mp4";
public const string Mpeg4Generic = Base + "/" + "mp4; codecs=avc1.42E01E, mp4a.40.2";
public const string Mp4 = Base + "/" + "mp4";
public const string Ogg = Base + "/" + "ogg";
public const string QuickTime = Base + "/" + "quicktime";
public const string WebM = Base + "/" + "webm";
public const string H264 = Base + "/" + "H264";
public const string H265 = Base + "/" + "H265";
public const string Theora = Base + "/" + "Theora";
public const string Vp8 = Base + "/" + "VP8";
public const string Vp9 = Base + "/" + "VP9";
public const string Vorbis = Base + "/" + "Vorbis";
public const string Any = Base + "/*";
public const string Mpeg = Base + "/mpeg";
public const string Mpeg4 = Base + "/mp4";
public const string Mpeg4Generic = Base + "/mp4; codecs=avc1.42E01E, mp4a.40.2";
public const string Mp4 = Base + "/mp4";
public const string Ogg = Base + "/ogg";
public const string QuickTime = Base + "/quicktime";
public const string WebM = Base + "/webm";
public const string H264 = Base + "/H264";
public const string H265 = Base + "/H265";
public const string Theora = Base + "/Theora";
public const string Vp8 = Base + "/VP8";
public const string Vp9 = Base + "/VP9";
public const string Vorbis = Base + "/Vorbis";
}

0 comments on commit d6dbd60

Please sign in to comment.