AVPro 插件发布安卓平台后没声音 使用(流路径播放)

1设置  AVPro Media Player 组件属性  

AVPro 插件发布安卓平台后没声音 使用(流路径播放)_第1张图片 

AVPro 插件发布安卓平台后没声音 使用(流路径播放)_第2张图片  

2 设置PlayerSetting 参数

AVPro 插件发布安卓平台后没声音 使用(流路径播放)_第3张图片

3  使用UGUI播放视频时候,需要VideoDisplay 赋值  ,同时设置下安卓播放的参数和路径。基本就OK 了

 //播放对视频
	    public void OnOpenVideoFile(string path)
	   {
		_mediaPlayer = ARGameManager.Instance._mediaPlayer;

		#region UNITY_ANDROID
		_mediaPlayer._optionsAndroid.overridePath = true;
		_mediaPlayer._optionsAndroid.path = path;
		#endregion

		transform.Find("VideoDisplay").GetComponent< DisplayUGUI >()._mediaPlayer = ARGameManager.Instance._mediaPlayer;
		if (path == null || path == "")
		  {

			_mediaPlayer.OpenVideoFromFile(MediaPlayer.FileLocation.RelativeToStreamingAssetsFolder, path, true);

			
		}
		  else
		  {
			_mediaPlayer.OpenVideoFromFile(MediaPlayer.FileLocation.RelativeToStreamingAssetsFolder, path, true);
			//_mediaPlayer.OpenVideoFromFile(MediaPlayer.FileLocation.AbsolutePathOrURL, path, true);

			_mediaPlayer.OpenVideoFromFile(MediaPlayer.FileLocation.RelativeToStreamingAssetsFolder, path, true);
		}


		 
	   }

 

你可能感兴趣的:(C#,Unity)