* use js instead of lua * update dependencies * add audio stream selector script for episodes * add audio stream selector script for movies * update changelog
12 lines
293 B
C#
12 lines
293 B
C#
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.Scheduling;
|
|
|
|
public interface IMultiEpisodeShuffleCollectionEnumeratorFactory
|
|
{
|
|
IMediaCollectionEnumerator Create(
|
|
string jsScriptPath,
|
|
IList<MediaItem> mediaItems,
|
|
CollectionEnumeratorState state);
|
|
}
|