Page 1 of 1
Alternate between playlists/folders?
Posted: 24 Aug 2015 05:03
by Timic83
Hello, I would like to play shows that are in folders one by one, like this
Show 1 Ep 1
Show 2 Ep 1
Show 3 Ep 1
Show 1 Ep 2
Show 2 Ep 2
Show 3 Ep 2
Show 1 Ep 3
Etc
Is there any way to splice folders together like this? To simulate a real TV station alternating between different shows?
Re: Alternate between playlists/folders?
Posted: 24 Aug 2015 11:11
by kodela
Can you not better explain your problem?
What are "shows"?
What is "Show 1 Ep 1"?
What do you mean by "splice folders"?
What are you saying with: "... splice folders together like this"?
Re: Alternate between playlists/folders?
Posted: 24 Aug 2015 11:55
by Timic83
What I mean is
Say I have 2 folders, both with episodes of a TV show. How can I make VLC alternate between playing episodes of them.
Re: Alternate between playlists/folders?
Posted: 24 Aug 2015 12:47
by mederi
Show 1 Ep 1
Show 2 Ep 1
Show 3 Ep 1
Show 1 Ep 2
Show 2 Ep 2
Show 3 Ep 2
Show 1 Ep 3
You can manually prepare such playlist or write a VLC Extension Lua script that would generate it for you.
Re: Alternate between playlists/folders?
Posted: 24 Aug 2015 16:58
by Timic83
Is there a way to do it automatically? I don't know how to LUA script, how would I go about learning? Can any other players do this?
Re: Alternate between playlists/folders?
Posted: 25 Aug 2015 14:00
by mederi
If you use plain playlist structure (no playlist tree) and all episodes have the same title format (filename or metadata title tag), then you just sort items by title and you can recognize them by their URI.
Code: Select all
Title --> Title /\ URI
-------------- -------------- --------------
Episode 01.avi Episode 01.avi file:///...
Episode 02.avi Episode 01.avi file:///...
Episode 01.avi Episode 02.avi file:///...
Episode 02.avi Episode 02.avi file:///...
I doubt there is a player with such a specific feature. You can help yourself with Lua in VLC:
Forum
Scripting VLC in Lua, pinned topic
Getting started?
Check some
VLC Extensions what/how they do: Resume Media, Sampler (PG), Add Similar Files From Folder.
Re: Alternate between playlists/folders?
Posted: 25 Aug 2015 17:06
by Timic83
Do you have any more assistance outside of me learning Lua? It seems crazy that NO player can do this, isn't there just a way to alternate between episodes from seperate playlist files?
Thankyou
Re: Alternate between playlists/folders?
Posted: 29 Aug 2015 20:06
by mederi