You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
VLC-Scheduler is always zipping files, even when source_mixing_function is set to chain.
Now is: primary_playlist = Playlist( name='PRIMARY', **default_playlist_config, recursive=config.MEDIA_RECURSIVE, ignore_playing_time_if_empty=config.IGNORE_PLAYING_TIME_IF_PLAYLIST_IS_EMPTY )
VLC-Scheduler is always zipping files, even when source_mixing_function is set to chain.
Now is:
primary_playlist = Playlist( name='PRIMARY', **default_playlist_config, recursive=config.MEDIA_RECURSIVE, ignore_playing_time_if_empty=config.IGNORE_PLAYING_TIME_IF_PLAYLIST_IS_EMPTY )
Should be:
primary_playlist = Playlist( name='PRIMARY', **default_playlist_config, recursive=config.MEDIA_RECURSIVE, ignore_playing_time_if_empty=config.IGNORE_PLAYING_TIME_IF_PLAYLIST_IS_EMPTY, source_mixing_function=config.SOURCE_MIXING_FUNCTION )
The text was updated successfully, but these errors were encountered: