Exemplo n.º 1
0
        private void Remove()
        {
            StatusLabel.Content = strings.removing;

            FFmpegHelper.RemoveFFmpeg();

            Progress.Value = 100;
        }
Exemplo n.º 2
0
        private async Task Install()
        {
            StatusLabel.Content = strings.downloading;

            string archive = await FFmpegHelper.DownloadFFmpeg(ProgressChanged);

            StatusLabel.Content = strings.installing;
            FFmpegHelper.InstallFFmpeg(archive);
        }