-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainActivity.cs
354 lines (271 loc) · 11 KB
/
MainActivity.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
using System;
using System.Net;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Text.RegularExpressions;
using Android.App;
using Android.Webkit;
using Android.Graphics;
using Android.Graphics.Drawables;
using Android.OS;
using Android.Support.V7.App;
using Android.Support.V7.View.Menu;
using Android.Runtime;
using Android.Widget;
using Android.Net;
using Android.Gestures;
using Android.Views;
using Android.Util;
using Android.Support.Design.Widget;
using Xamarin;
using Xamarin.Essentials;
using Xamarin.Android;
using YoutubeExplode;
using YoutubeExplode.Videos;
using YoutubeExplode.Common;
using YoutubeExplode.Search;
using YoutubeExplode.Videos.Streams;
using YoutubeExplode.Videos.ClosedCaptions;
using NAudio;
using NAudio.Wave.WaveFormats;
using NAudio.CoreAudioApi;
using NAudio.Wave;
using NAudio.Wave.SampleProviders;
using NAudio.Dsp;
using NAudio.Wave.Compression;
using NAudio.Wave.Asio;
using NAudio.MediaFoundation;
using NAudio.FileFormats.Wav;
using NAudio.FileFormats.Mp3;
using Android.Media;
namespace Vertex
{
[Activity(Label = "@string/app_name", Theme = "@style/VertexTheme", MainLauncher = true)]
public partial class ContentActivity : AppCompatActivity
{
const string STR_PLAY = "►";
const string STR_PAUSE = "II";
ProgressBar loadingProgress;
Button
buttonStart,
buttonPlay;
ListView listMenu;
EditText uriEnterText;
TextView
reporterText,
nameholderText,
durationText,
textViewCurrentTime,
textViewLength;
Playback mediaPlayer;
SeekBar seekAudio;
//bool manualSeeking;
ProgressAdapter pga;
List<TrackData> tracks = new List<TrackData>();
AudioManager audioManager;
protected async override void OnCreate(Bundle savedInstanceState)
{
base.OnCreate(savedInstanceState);
Xamarin.Essentials.Platform.Init(this, savedInstanceState);
SetContentView(Resource.Layout.content_main);
mediaPlayer = new Playback(this);
//var ab = ((Activity)ApplicationContext).ActionBar;
#region Controls
loadingProgress = FindViewById<ProgressBar>(Resource.Id.progressBar1);
nameholderText = FindViewById<TextView>(Resource.Id.textView2);
reporterText = FindViewById<TextView>(Resource.Id.textView3);
durationText = FindViewById<TextView>(Resource.Id.textViewTimeSpan);
textViewCurrentTime = FindViewById<TextView>(Resource.Id.textViewCurrentTime);
textViewLength = FindViewById<TextView>(Resource.Id.textViewLength);
uriEnterText = FindViewById<EditText>(Resource.Id.editText1);
listMenu = FindViewById<ListView>(Resource.Id.listMenu1);
buttonStart = FindViewById<Button>(Resource.Id.button1);
buttonStart.Click += InitLoader;
buttonPlay = FindViewById<Button>(Resource.Id.buttonPlay);
buttonPlay.Enabled = false;
buttonPlay.Click += (s, e) =>
{
if (mediaPlayer.CanPlay)
{
if (mediaPlayer.IsPlaying)
{
buttonPlay.Text = STR_PLAY;
mediaPlayer.Pause();
}
else
{
buttonPlay.Text = STR_PAUSE;
mediaPlayer.Play();
}
}
};
Permissions.StorageWrite rs = new Permissions.StorageWrite();
var writegtd = await rs.CheckStatusAsync();
if (writegtd == PermissionStatus.Granted)
{
writegtd = await rs.RequestAsync();
if (writegtd == PermissionStatus.Granted)
{
InitTracks();
}
}
seekAudio = FindViewById<SeekBar>(Resource.Id.seekBarAudioSeek);
seekAudio.ProgressChanged += (s, e) =>
{
if (seekAudio.Pressed)
mediaPlayer.Seek(seekAudio.Progress / 100f);
};
var img = FindViewById<ImageView>(Resource.Id.imageView1);
img.SetImageResource(Resource.Drawable.back);
#endregion
mediaPlayer.OnFinished += (s, e) =>
{
buttonPlay.Text = STR_PLAY;
};
mediaPlayer.ProgressChanged += (s, e) =>
{
seekAudio.Progress = (int)(mediaPlayer.Progress * 100);
textViewCurrentTime.Text = $"{mediaPlayer.CurrentPosition:hh\\:mm\\:ss}";
};
mediaPlayer.OnPaused += (s, e) =>
{
buttonPlay.Text = STR_PLAY;
};
pga = new ProgressAdapter(loadingProgress);
pga.OnDone += LoadingDone;
}
void InitTracks()
{
string path = Android.OS.Environment.GetExternalStoragePublicDirectory(Android.OS.Environment.DirectoryMusic).ToString();
var files = Directory.EnumerateFiles(path);
var yts = files.Where(n =>
n.Contains("Music/[YE]"));
files = yts.OrderBy(n => n).Concat(files.Except(yts).OrderBy(n => n));
MediaMetadataRetriever mtr = new MediaMetadataRetriever();
foreach (var f in files)
{
tracks.Add(TrackData.FromFile(f));
}
TrackDataAdapter tda = new TrackDataAdapter(this, tracks);
tda.OnTrackPicked += (s, e) =>
{
SetPlayerAudio(e);
};
listMenu.Adapter = tda;
}
private void InitLoader(object sender, EventArgs e)
{
if (!string.IsNullOrEmpty(uriEnterText.Text))
{
var m = Regex.Match(uriEnterText.Text, @"((?<=youtube.com/watch\?v=).{11})|((?<=(//youtu.be/)).{11})");
if (m.Success)
{
try
{
uriEnterText.ClearFocus();
LoadAudio($"https://youtube.com/watch?v={m.Value}");
buttonStart.Enabled = true;
}
catch (Exception)
{
buttonStart.Enabled = true;
reporterText.Text = "Error occured, try again.";
}
}
else
reporterText.Text = "Invalid URI. Check your link.";
}
else
reporterText.Text = "Field is empty.";
}
private void LoadingDone(object sender, EventArgs e)
{
reporterText.Text = $"Loading done.";
buttonStart.Enabled = true;
}
async void LoadAudio(string uri)
{
buttonStart.Enabled = false;
reporterText.Text = "Getting video metadata...";
var youtube = new YoutubeClient { };
try
{
var video = await youtube.Videos.GetAsync(uri);
var title = video.Title;
var duration = video.Duration;
nameholderText.Text = $"{title}";
durationText.Text = $"{duration:hh\\:mm\\:ss}";
var streamManifest = await youtube.Videos.Streams.GetManifestAsync(video.Id);
var audio = streamManifest.GetAudioOnly().WithHighestBitrate();
if (audio != null)
{
Permissions.StorageWrite rs = new Permissions.StorageWrite();
var writegtd = await rs.CheckStatusAsync();
if (writegtd != PermissionStatus.Granted)
{
await rs.RequestAsync();
}
//string path = ApplicationContext.GetExternalFilesDir(Android.OS.Environment.DirectoryMusic).ToString();
string path = Android.OS.Environment.GetExternalStoragePublicDirectory(Android.OS.Environment.DirectoryMusic).AbsolutePath;
var state = Android.OS.Environment.ExternalStorageState;
if (state == "mounted")
{
reporterText.Text = $"Downloading...";
var fullpath = $"{path}/[YE] {title.Replace("/", @"\")}.mp3";
await youtube.Videos.Streams.DownloadAsync(audio, fullpath, pga);
SetPlayerAudio(TrackData.FromFile(fullpath));
}
}
}
catch (System.Net.Http.HttpRequestException)
{
reporterText.Text = $"Error occured. No Internet connection.";
}
catch (System.IO.IOException)
{
reporterText.Text = $"Error occured. Internet connection is down.";
}
catch (Exception)
{
reporterText.Text = $"Error occured. Try again.";
}
}
public void SetPlayerAudio(TrackData td)
{
mediaPlayer.SetAudio(td.Path);
buttonPlay.Text = STR_PLAY;
buttonPlay.Enabled = true;
nameholderText.Text = $"{td.TrackName}";
textViewLength.Text = $"{mediaPlayer.Duration:hh\\:mm\\:ss}";
durationText.Text = $"{td.Duration:hh\\:mm\\:ss}";
textViewCurrentTime.Text = $"{new TimeSpan():hh\\:mm\\:ss}";
}
public override bool OnCreateOptionsMenu(IMenu menu)
{
MenuInflater.Inflate(Resource.Menu.menu_main, menu);
return true;
}
public override bool OnOptionsItemSelected(IMenuItem item)
{
int id = item.ItemId;
if (id == Resource.Id.action_settings)
{
return true;
}
return base.OnOptionsItemSelected(item);
}
private void FabOnClick(object sender, EventArgs eventArgs)
{
View view = (View)sender;
Snackbar.Make(view, "Replace with your own action", Snackbar.LengthLong)
.SetAction("Action", (Android.Views.View.IOnClickListener)null).Show();
}
public override void OnRequestPermissionsResult(int requestCode, string[] permissions, [GeneratedEnum] Android.Content.PM.Permission[] grantResults)
{
Xamarin.Essentials.Platform.OnRequestPermissionsResult(requestCode, permissions, grantResults);
base.OnRequestPermissionsResult(requestCode, permissions, grantResults);
}
}
}