use javascript instead of lua for external scripts; add audio stream selector scripts (#1005)
* use js instead of lua * update dependencies * add audio stream selector script for episodes * add audio stream selector script for movies * update changelog
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
namespace ErsatzTV.Core.Interfaces.Scripting;
|
||||
|
||||
public interface IScriptEngine : IDisposable
|
||||
{
|
||||
void Load(string jsScriptPath);
|
||||
Task LoadAsync(string jsScriptPath);
|
||||
object GetValue(string propertyName);
|
||||
object Invoke(string functionName, params object[] args);
|
||||
}
|
||||
Reference in New Issue
Block a user