/****************************************************************************
* Copyright 2019 Nreal Techonology Limited. All rights reserved.
*
* This file is part of NRSDK.
*
* https://www.nreal.ai/
*
*****************************************************************************/
namespace NRKernal.Record
{
///
/// Record video from the MR world. You can record a RGB only, Virtual only or Blended image
/// through this class.
public class NRRecordBehaviour : CaptureBehaviourBase
{
/// Sets out put path.
/// Full pathname of the file.
public void SetOutPutPath(string path)
{
var encoder = this.GetContext().GetEncoder();
((VideoEncoder)encoder).EncodeConfig.SetOutPutPath(path);
}
}
}