This repository was archived by the owner on May 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathProgram.cs
79 lines (69 loc) · 2.39 KB
/
Program.cs
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
// Authors
// Copyright (C) 2020 Vlad Kolesnikov <[email protected]>
// Copyright (C) 2014 Stephan Sundermann <[email protected]>
using System;
using Gst;
using Gst.App;
namespace netcore3sample
{
class Program
{
private static string source = "https://dash.akamaized.net/akamai/bbb_30fps/bbb_30fps.mpd";
private static string sourceOptions = string.Empty;
static void Main(string[] args)
{
if(args.Length > 0)
{
source = args[0];
if(args.Length > 1)
{
sourceOptions = string.Join(' ', args.AsSpan(1).ToArray());
}
}
int scenario = 0;
do
{
Console.Write($"{Environment.NewLine}Which scenario would you like to run?{Environment.NewLine}" +
"\tP - playback, R - raw samples, C - complex example, E - exit the app (Default - E): ");
string answer = Console.ReadLine().Trim().ToUpper();
switch(answer)
{
case "P":
scenario = 1;
break;
case "R":
scenario = 2;
break;
case "C":
scenario = 3;
break;
case "":
case "E":
scenario = -1;
break;
default:
break;
}
}
while (scenario == 0);
switch(scenario)
{
case -1:
Console.WriteLine("Goodbye!");
return;
case 1:
PlaybackOnly.Run(ref args, source, sourceOptions);
break;
case 2:
RawSamplesOnly.Run(ref args, source, sourceOptions);
break;
case 3:
RawSamplesAndPlaybackComplex.Run(ref args, source, sourceOptions);
break;
default:
System.Diagnostics.Debug.Fail("Invalid scenario");
break;
}
}
}
}