本文整理汇总了C#中MediaPlayer.SetUriSource方法的典型用法代码示例。如果您正苦于以下问题:C# MediaPlayer.SetUriSource方法的具体用法?C# MediaPlayer.SetUriSource怎么用?C# MediaPlayer.SetUriSource使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MediaPlayer
的用法示例。
在下文中一共展示了MediaPlayer.SetUriSource方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Run
public void Run(IBackgroundTaskInstance taskInstance)
{
Debug.WriteLine("Background Audio Task " + taskInstance.Task.Name + " starting...");
mdcontrol = BackgroundMediaPlayer.Current.SystemMediaTransportControls;
mdcontrol.IsEnabled = true;
// 允许使用播放/暂停按钮
mdcontrol.IsPlayEnabled = true;
mdcontrol.IsPauseEnabled = true;
// 处理ButtonPressed事件
mdcontrol.ButtonPressed += mdcontrol_ButtonPressed;
// 获取MediaPlayer实例
currentPlayer = BackgroundMediaPlayer.Current;
// 处理事件,接收来自前台应用程序的消息
BackgroundMediaPlayer.MessageReceivedFromForeground += BackgroundMediaPlayer_MessageReceivedFromForeground;
// 关闭自动开始播放
currentPlayer.AutoPlay = false;
// 设置播放源
Uri audioUri = new Uri("ms-appx:///Assets/1.mp3");
currentPlayer.SetUriSource(audioUri);
deferral = taskInstance.GetDeferral();
// 当后台任务被取消时引发事件
taskInstance.Canceled += task_Canceled;
isRunning = true;
}
示例2: Play
/// <summary>
/// Play
/// </summary>
/// <param name="url"></param>
/// <param name="title"></param>
private void Play(string url, string title)
{
_mediaPlayer = BackgroundMediaPlayer.Current;
_mediaPlayer.AutoPlay = true;
_mediaPlayer.SetUriSource(new Uri(url));
_systemMediaTransportControl.ButtonPressed += MediaTransportControlButtonPressed;
_systemMediaTransportControl.IsPauseEnabled = true;
_systemMediaTransportControl.IsPlayEnabled = true;
_systemMediaTransportControl.DisplayUpdater.Type = MediaPlaybackType.Music;
_systemMediaTransportControl.DisplayUpdater.MusicProperties.Title = title;
_systemMediaTransportControl.DisplayUpdater.Update();
}
示例3: Previous
private static async void Previous(SystemMediaTransportControls stmp, MediaPlayer mediaplayer)
{
try
{
var list = await PlayList.GetPlayList();
var now = list.nowplay;
var datafolder = await ApplicationData.Current.LocalFolder.GetFolderAsync("Data");
var nowplayfile = await datafolder.GetFileAsync("nowplay.json");
var playlistfile = await datafolder.GetFileAsync("playlist.json");
switch (list.cyc)
{
case PlayList.cycling.单曲循环:
await Windows.Storage.FileIO.WriteTextAsync(nowplayfile, PlayList.ToJsonData(list.SongList[now]));
stmp.DisplayUpdater.ClearAll();
stmp.DisplayUpdater.Type = MediaPlaybackType.Music;
stmp.DisplayUpdater.MusicProperties.Title = list.SongList[now].title;
stmp.DisplayUpdater.MusicProperties.Artist = list.SongList[now].singername;
stmp.DisplayUpdater.Update();
if (list.SongList[now].url.Contains("http"))
{
mediaplayer.SetUriSource(new Uri(list.SongList[now].url));
}
else
{
mediaplayer.SetFileSource(await Windows.Storage.StorageFile.GetFileFromPathAsync(list.SongList[now].url));
}
break;
case PlayList.cycling.列表循环:
if (now == 0)
{
now = list.SongList.Count-1;
}
else
{
now = now - 1;
}
list.nowplay = now;
await Windows.Storage.FileIO.WriteTextAsync(nowplayfile, PlayList.ToJsonData(list.SongList[now]));
stmp.DisplayUpdater.ClearAll();
stmp.DisplayUpdater.Type = MediaPlaybackType.Music;
stmp.DisplayUpdater.MusicProperties.Title = list.SongList[now].title;
stmp.DisplayUpdater.MusicProperties.Artist = list.SongList[now].singername;
stmp.DisplayUpdater.Update();
if (list.SongList[now].url.Contains("http"))
{
mediaplayer.SetUriSource(new Uri(list.SongList[now].url));
}
else
{
mediaplayer.SetFileSource(await Windows.Storage.StorageFile.GetFileFromPathAsync(list.SongList[now].url));
}
await Windows.Storage.FileIO.WriteTextAsync(playlistfile, PlayList.ToJsonData(list));
break;
case PlayList.cycling.随机播放:
now = new Random().Next(0, list.SongList.Count);
list.nowplay = now;
await Windows.Storage.FileIO.WriteTextAsync(nowplayfile, PlayList.ToJsonData(list.SongList[now]));
stmp.DisplayUpdater.ClearAll();
stmp.DisplayUpdater.Type = MediaPlaybackType.Music;
stmp.DisplayUpdater.MusicProperties.Title = list.SongList[now].title;
stmp.DisplayUpdater.MusicProperties.Artist = list.SongList[now].singername;
stmp.DisplayUpdater.Update();
if (list.SongList[now].url.Contains("http"))
{
mediaplayer.SetUriSource(new Uri(list.SongList[now].url));
}
else
{
mediaplayer.SetFileSource(await Windows.Storage.StorageFile.GetFileFromPathAsync(list.SongList[now].url));
}
await Windows.Storage.FileIO.WriteTextAsync(playlistfile, PlayList.ToJsonData(list));
break;
default:
break;
}
}
catch (Exception)
{
}
}