网上演练贵港万达广场(人员密集)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

73 lines
1.9 KiB

using UnityEngine;
using UnityEngine.UI;
namespace FFmpeg.Demo.REC
{
public class RECView : MonoBehaviour
{
public FFmpegREC recLogic;
public Button startBtn, stopBtn;
public Text output;
const int charsLimit = 2000;
//------------------------------
void Awake()
{
recLogic.Init(Output, Finish);
startBtn.onClick.AddListener(OnStart);
stopBtn.onClick.AddListener(OnStop);
}
//------------------------------
public void OnStart()
{
startBtn.interactable = false;
stopBtn.interactable = true;
recLogic.StartREC();
}
//------------------------------
public void OnStop()
{
stopBtn.interactable = false;
recLogic.StopREC();
}
//------------------------------
void Output(string msg)
{
string newOutput = output.text + msg;
if (newOutput.Length > charsLimit)
newOutput = newOutput.Remove(0, newOutput.Length - charsLimit);
output.text = newOutput;
}
public void Finish(string outputVideo)
{
startBtn.interactable = true;
Debug.Log("Video saved to: " + outputVideo);
string localURL = "file://" + outputVideo;
#if (UNITY_IOS || UNITY_ANDROID) && !UNITY_EDITOR
Handheld.PlayFullScreenMovie(
localURL,
Color.black,
FullScreenMovieControlMode.Full,
FullScreenMovieScalingMode.AspectFit);
#else
Application.OpenURL(localURL);
#endif
}
//------------------------------
void OnDestroy()
{
startBtn.onClick.RemoveListener(OnStart);
stopBtn.onClick.RemoveListener(OnStop);
}
}
}