贵港吾悦商业管理有限公司多角色网上演练(吾悦广场)
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.
 
 
 
 
 

48 lines
1011 B

using UnityEngine;
namespace FFmpeg.Demo
{
public class DecodeView : MonoBehaviour
{
DecodeEncodeData config = new DecodeEncodeData();
//------------------------------
public void Open()
{
gameObject.SetActive(true);
}
//------------------------------
public void OnImagesPathInput(string fullPath)
{
config.outputPath = fullPath;
}
public void OnSoundPathInput(string fullPath)
{
config.soundPath = fullPath;
}
public void OnVideoPathInput(string fullPath)
{
config.inputPath = fullPath;
}
public void OnFPSInput(string fps)
{
config.fps = float.Parse(fps);
}
//------------------------------
public void OnDecode()
{
FFmpegCommands.Decode(config);
gameObject.SetActive(false);
}
//------------------------------
}
}