unity获取videoplayerurl路径下的视频时长
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了unity获取videoplayerurl路径下的视频时长相关的知识,希望对你有一定的参考价值。
参考技术A 通过 Unity 的 VideoPlayer 脚本,可以获取 videoPlayerURL 路径下的视频时长。你可以使用 VideoPlayer.length 来获取视频的总时长,并使用 VideoPlayer.time 属性获取已经播放的时长。 参考技术B 时长用00:00显示2. privatestringToTimeFormat(floattime)
3.
Unity读取StreamingAssets路径下的文件
/// <summary>
///读取StreamingAssets中的文件
/// </summary>
/// <param name="path">StreamingAssets下的文件路径</param>
/// <returns>读取到的字符串</returns>
public static string GetTextForStreamingAssets(string path)
{
string localPath = "";
if (Application.platform == RuntimePlatform.Android)
{
localPath = Application.streamingAssetsPath + "/" + path;
}
else
{
localPath = "file:///" + Application.streamingAssetsPath + "/" + path;
}
WWW www = new WWW(localPath);
if (www.error != null)
{
Debug.LogError("error while reading files : " + localPath);
return ""; //读取文件出错
}
while (!www.isDone) { }
Debug.Log("File content : " + www.text);//www下面还有获取字节数组的属性
return www.text;
}
以上是关于unity获取videoplayerurl路径下的视频时长的主要内容,如果未能解决你的问题,请参考以下文章