Making a 'TV Channel' out of XBMC
#16
Yeah thats a reason we all have XBMC I guess.

One method might be a quite specialised skin.
If I have helped you or increased your knowledge, click the 'thumbs up' button to give thanks :) (People with less than 20 posts won't see the "thumbs up" button.)
Reply
#17
OK (assuming you have your library all sorted) you can use LazyTV to have a random playlist of their TV shows playing whenever they switch on the computer. It will play the next unwatched episode of each series (rather than just any unwatched episode).

Add this to line 566 of the file called service.py in the addons folder. This will make sure the random playlist starts when XBMC is started. Make sure the code is aligned with the lines 565 and 567.

Code:
xbmc.executebuiltin('RunAddon(%s)' % __addonid__)

In the settings for the addon, set the Primary Action to be "Create and Launch Randomised Playlist. Then go to the Random Player page of the settings and set it up how you want. You can include random unwatched movies in the playlist if you like, and there is even a setting that will start the playlist with the last partially watched episode if they stopped part way through. You can set the number of episodes in the playlist.

If their tv is CEC capable, then you can set the option in XBMC to pause the video they are watching if they change the channel or switch off the TV.

Are they likely to be switching off the computer after watching their shows? Or will it be on permanently? If they leave it running then LazyTV may run out of episodes and another workaround would be required.
Reply
#18
Question (which probably belongs in the LazyTV thread sorry) - does LazyTV only calculate a new playlist on startup?
If I have helped you or increased your knowledge, click the 'thumbs up' button to give thanks :) (People with less than 20 posts won't see the "thumbs up" button.)
Reply
#19
(2014-11-23, 08:03)nickr Wrote: Question (which probably belongs in the LazyTV thread sorry) - does LazyTV only calculate a new playlist on startup?

Nope, it maintains the list for changes in watched status.

(Except for manual changes from watched back to unwatched. It can pick up those on start-up, though.)
Reply
#20
The computer will be left on; I wonder if there is some way to loop the playlists. There will be enough content on the TV that reruns won't be a concern.
Reply
#21
I wonder if the player would just keep going if you simply play the smart playlist that LazyTV creates.

New items will be added to the playlist when the previous episode is marked as watched, so it is possible that the player would never each the end.

Even if it doesnt, I suppose the service can be set to reload the Random Player when the previous Random Player comes to an end.
Reply

Logout Mark Read Team Forum Stats Members Help
Making a 'TV Channel' out of XBMC0