• 1
  • 306
  • 307
  • 308(current)
  • 309
  • 310
  • 694
[OLD/CLOSED] PseudoTV Live - Set-Top box solution
(2014-06-09, 06:48)pharmeceutikle Wrote:
(2014-06-09, 04:33)bry- Wrote:
(2014-06-09, 04:19)rytharr Wrote: uhh ok, First post did not say how much. I donated $5 on tuesday and got no reply or anything from pm so I take it I did not donate enough.

Or life got the way and he wasn't able to get to donor accounts this week.

He's most likely busy! He probably just missed it.

God damn, alright already all I did was ask a question then I get you guys jumping all over me. Yeah ok I get it people are busy thats why he hasn't been on the forums all week answering questions. I only sent 2 pm's so yeah he probably just missed it.
Hi
after the last update, any servers that are populated by playlists are not populating.
anyone else experiencing this?
(2014-06-09, 09:01)rytharr Wrote:
(2014-06-09, 06:48)pharmeceutikle Wrote:
(2014-06-09, 04:33)bry- Wrote: Or life got the way and he wasn't able to get to donor accounts this week.

He's most likely busy! He probably just missed it.

God damn, alright already all I did was ask a question then I get you guys jumping all over me. Yeah ok I get it people are busy thats why he hasn't been on the forums all week answering questions. I only sent 2 pm's so yeah he probably just missed it.

Cool your jets, man! That wasn't an attack. It wasn't from me atleast. Just saying he may be busy. I donated 5 bucks, too! Well, it might've been 10 but my intentions was for a 5 spot. Long story! Anyways, patience young grasshopper.
Hey there people,
I'm sure this has been asked already and possibly answered, but...
...is it possible to play only the first unwatched episode in a tv show?

Example: I've watched all star trek series, except for star trek enterprise, there I've seen just the first season.
So I'd want a channel showing all st:tos, st:tng, st:voyager, st:ds9 [...] st:enterpriseS01 and finally st:enterpriseS02E01.
Once I see that, I want to show all of the above, plus star trek: enterprise S02E02.
...and so on.

I'm pretty sure it can be done, but it involves some clever tinkering with the channel creator thingie and smart playlists.
I could probably figure it out by myself, but if someone has already done it and could share their experience, it would save me quite a bit of time Smile

Cheers.
You could look at LazyTV if you want that. It can be done but requires work on your part
first_time_user (wiki) | free content (wiki) | forum rules (wiki) | PVR (wiki) | Debug Log (wiki)

IMPORTANT:
The official Kodi version does not contain any content what so ever. This means that you should provide your own content from a local or remote storage location, DVD, Blu-Ray or any other media carrier that you own. Additionally Kodi allows you to install third-party plugins that may provide access to content that is freely available on the official content provider website. The watching or listening of illegal or pirated content which would otherwise need to be paid for is not endorsed or approved by Team Kodi.
@johnnie Create a playlist: Contains-Star Trek / Play count is 0/ Group by year / Order by sort title (should work)
I was going to suggest order by date aired, but I guess that option isn't available(should be)
(2014-06-09, 09:53)EZ1976 Wrote: Hi
after the last update, any servers that are populated by playlists are not populating.
anyone else experiencing this?

Hi
it seems that channels are populated after around 2-3 hours.
it seems that nothing is running but after 30 minutes i see on channel has been created.


this is the same for TV genre and movie playlists.
any ideas? i dont see anything in the logs.
(2014-06-09, 16:31)EZ1976 Wrote:
(2014-06-09, 09:53)EZ1976 Wrote: Hi
after the last update, any servers that are populated by playlists are not populating.
anyone else experiencing this?

Hi
it seems that channels are populated after around 2-3 hours.
it seems that nothing is running but after 30 minutes i see on channel has been created.


this is the same for TV genre and movie playlists.
any ideas? i dont see anything in the logs.
I have the same problem when auto tunning TV genre movie genre movie studio and mixed genre even using the PSTVL channel configuration tool in windows doesn't help
Hi Luna,

I have a minor fix for blip.tv rss feeds (for example http://blip.tv/redlettermedia/rss). Right now the time and descriptions are not parsed out correctly. Here's what I changed to make it work:

I changed line 2621:
Code:
if epdesc == '':
    epdesc = eptitle
To:
Code:
if epdesc == '':
    epdesc = feed.entries[i]['blip_puredescription']                        

if epdesc == '':
    epdesc = eptitle

Line 2625 From:
Code:
epdesc = uni(self.trim(epdesc, 500, '...'))
To
Code:
epdesc = uni(self.trim(epdesc.replace('\n', '').replace('<br />', ''), 500, '...'))

And finally lines 2635:
Code:
try:
    runtimex = feed.entries[i]['itunes_duration']
except Exception,e:
    runtimex = 1350
    pass
To:
Code:
try:
    runtimex = feed.entries[i]['itunes_duration']
except Exception,e:
    runtimex = ''
    pass

try:
    if runtimex == '':
        runtimex = feed.entries[i]['blip_runtime']
    except Exception,e:
        runtimex = ''
        pass

if runtimex == '':
    runtimex = 1350

I'm sure there's a better way to do it, but it seems to be working for me so far.

Also on a side note is there anyway to disabled file "stacking" (When I have a bunch of short youtube videos the EPG says the Channel Name (Stacked))? I'd like to be able to select and individual video even if the run time is short.
Luna,

I cant seem to update to the latest version. i have tried 4.1, 4.2 and now 4.3.

Each time,

I have deleted all files in

.xbmc\userdata\script.pseudotv.livem (Removed Folder)
.xbmc\addons (removed script.pseudotv.live.master.zip)

rebooted, just to make sure.
installed new zip
made one minor configuration change (linux 64) os
each time PTVL hanfgs on auto tune.


Latest log
https://www.dropbox.com/s/cw7odhm6g366bze/xbmc.log

3.7 works fine if i re-install.

any clues?

::Update
restarted XBMC
Turned Autotune off
relauched PSTVL
PSTVL ask "Would you like PseudoTV Live to Auto Tune Channed?" --- Say no

get error Unable to find any channels
Setting windows appears.

restarted - PSTLV
used old Settings2.xml
launched PSTLV
PSTLV Crashed

updated log. -- https://www.dropbox.com/s/xhdnderfyfk28g...20Copy.log

OK - got it working after i set the XMLTV directory for live channels.


Maybe just me. but i think something is wrong with auto tune on initial setup.
(2014-06-09, 17:02)bigsteel99 Wrote:
(2014-06-09, 16:31)EZ1976 Wrote:
(2014-06-09, 09:53)EZ1976 Wrote: Hi
after the last update, any servers that are populated by playlists are not populating.
anyone else experiencing this?

Hi
it seems that channels are populated after around 2-3 hours.
it seems that nothing is running but after 30 minutes i see on channel has been created.


this is the same for TV genre and movie playlists.
any ideas? i dont see anything in the logs.
I have the same problem when auto tunning TV genre movie genre movie studio and mixed genre even using the PSTVL channel configuration tool in windows doesn't help

i decided to do a small test.
took a new settings2 and only put one playlist.
i limit the media per channel to 250.
started PTVL and its started to populate the channel but as of now its reached 1096 ( i have 1200 from that genre) and then its just froze on it.
i checked the playlists it generates and the
<limit>250</limit>

only exist on TV Playlists and not on movie playlists.
didnt matter though because it just froze on them
(2014-06-09, 09:01)rytharr Wrote:
(2014-06-09, 06:48)pharmeceutikle Wrote:
(2014-06-09, 04:33)bry- Wrote: Or life got the way and he wasn't able to get to donor accounts this week.

He's most likely busy! He probably just missed it.

God damn, alright already all I did was ask a question then I get you guys jumping all over me. Yeah ok I get it people are busy thats why he hasn't been on the forums all week answering questions. I only sent 2 pm's so yeah he probably just missed it.

What's up with the attitude? I only received one pm from you yesterday... relax nobody was messing with you bry and Pharm are good peeps!

(2014-06-09, 16:31)EZ1976 Wrote:
(2014-06-09, 09:53)EZ1976 Wrote: Hi
after the last update, any servers that are populated by playlists are not populating.
anyone else experiencing this?

Hi
it seems that channels are populated after around 2-3 hours.
it seems that nothing is running but after 30 minutes i see on channel has been created.


this is the same for TV genre and movie playlists.
any ideas? i dont see anything in the logs.

2-3 hrs that's unusually long... if using livetv limit xmltv to a few days and set media limit to something other then unlimited. I don't see issues with playlist...

(2014-06-09, 18:39)mcorcoran Wrote: Hi Luna,

I have a minor fix for blip.tv rss feeds (for example http://blip.tv/redlettermedia/rss). Right now the time and descriptions are not parsed out correctly. Here's what I changed to make it work:

I changed line 2621:
Code:
if epdesc == '':
    epdesc = eptitle
To:
Code:
if epdesc == '':
    epdesc = feed.entries[i]['blip_puredescription']                        

if epdesc == '':
    epdesc = eptitle

Line 2625 From:
Code:
epdesc = uni(self.trim(epdesc, 500, '...'))
To
Code:
epdesc = uni(self.trim(epdesc.replace('\n', '').replace('<br />', ''), 500, '...'))

And finally lines 2635:
Code:
try:
    runtimex = feed.entries[i]['itunes_duration']
except Exception,e:
    runtimex = 1350
    pass
To:
Code:
try:
    runtimex = feed.entries[i]['itunes_duration']
except Exception,e:
    runtimex = ''
    pass

try:
    if runtimex == '':
        runtimex = feed.entries[i]['blip_runtime']
    except Exception,e:
        runtimex = ''
        pass

if runtimex == '':
    runtimex = 1350

I'm sure there's a better way to do it, but it seems to be working for me so far.

Also on a side note is there anyway to disabled file "stacking" (When I have a bunch of short youtube videos the EPG says the Channel Name (Stacked))? I'd like to be able to select and individual video even if the run time is short.

I'll add iTunes duration but the rest looks feed specific, thanks for the info Smile

(2014-06-09, 18:39)mcorcoran Wrote: Hi Luna,

I have a minor fix for blip.tv rss feeds (for example http://blip.tv/redlettermedia/rss). Right now the time and descriptions are not parsed out correctly. Here's what I changed to make it work:

I changed line 2621:
Code:
if epdesc == '':
    epdesc = eptitle
To:
Code:
if epdesc == '':
    epdesc = feed.entries[i]['blip_puredescription']                        

if epdesc == '':
    epdesc = eptitle

Line 2625 From:
Code:
epdesc = uni(self.trim(epdesc, 500, '...'))
To
Code:
epdesc = uni(self.trim(epdesc.replace('\n', '').replace('<br />', ''), 500, '...'))

And finally lines 2635:
Code:
try:
    runtimex = feed.entries[i]['itunes_duration']
except Exception,e:
    runtimex = 1350
    pass
To:
Code:
try:
    runtimex = feed.entries[i]['itunes_duration']
except Exception,e:
    runtimex = ''
    pass

try:
    if runtimex == '':
        runtimex = feed.entries[i]['blip_runtime']
    except Exception,e:
        runtimex = ''
        pass

if runtimex == '':
    runtimex = 1350

I'm sure there's a better way to do it, but it seems to be working for me so far.

Also on a side note is there anyway to disabled file "stacking" (When I have a bunch of short youtube videos the EPG says the Channel Name (Stacked))? I'd like to be able to select and individual video even if the run time is short.

You can use the bypass option in global.py put full name of channel you don't want stacked.
Image Lunatixz - Kodi / Beta repository
Image PseudoTV - Forum | Website | Youtube | Help?
Quote:What's up with the attitude? I only received one pm from you yesterday... relax nobody was messing with you bry and Pharm are good peeps!

Ahem...pharm is awful people. I say this mainly because he has working music channels and I don't. And I'm just hating lol.
I keeed I keeed pharm is good people.

Donors need to relax and realize Luna runs this plug In and he'll get you your code when he gets it to you. I know how time consuming maintaining a skin can be, I can't imagine the time sink maintaining this plug in has to be.
(2014-06-09, 09:53)EZ1976 Wrote: Hi
after the last update, any servers that are populated by playlists are not populating.
anyone else experiencing this?

Hi
it seems that channels are populated after around 2-3 hours.
it seems that nothing is running but after 30 minutes i see on channel has been created.


this is the same for TV genre and movie playlists.
any ideas? i dont see anything in the logs.
[/quote]

Quote:2-3 hrs that's unusually long... if using livetv limit xmltv to a few days and set media limit to something other then unlimited. I don't see issues with playlist...


i will try only playlist without the PVR enable.
maybe they are conflicting.
the test i did was ONLY with 1 playlist channel and nothing else. so no xmltv was involved during the making of this test.

the only thing that is different is that it is using hebrew characters as movie titles.
i tried with a playlist of only 50 movies and it didnt start.
To continue the playlist not populating, i put a playlist with only live shows.
from 60 shows it stopped on number 14 and i got this in the log

10:01:32 T:139765458355968 WARNING: CreateLoader - Unsupported protocol(stack) in stack://nfs://192.168.1.250/Other_Media/Movies/Live Shows/Elton John - 60 Live At The Madison Square Garden (2007)/Elton John - 60 Live At The Madison Square Garden (2007) - Part 1.mkv , nfs://192.168.1.250/Other_Media/Movies/Live Shows/Elton John - 60 Live At The Madison Square Garden (2007)/Elton John - 60 Live At The Madison Square Garden (2007) - Part 2.mkv



removed system cache. started a new settings.xml & settings2.xml
started a playlist with a 1000 movies. got to number 978 and it halted
this is in the log.
10:50:35 T:140191926216448 NOTICE: -->Python Interpreter Initialized<--
10:50:35 T:140191926216448 NOTICE: script.pseudotv.live PseudoTV Live /storage/.xbmc/addons/script.pseudotv.live-master 0.4.3a
10:50:35 T:140191926216448 NOTICE: script.pseudotv.live-Globals: System Caching Disabled
10:50:35 T:140191926216448 NOTICE: metahandler: Initializing MetaHandlers version: 2.6.0
10:50:36 T:140191926216448 NOTICE: metahandler: Loading sqlite3 as DB engine version: 3.7.17
10:50:36 T:140191926216448 NOTICE: metahandler: Looking up TMDB config cache values
10:50:36 T:140191926216448 NOTICE: metahandler: Cache still valid, setting values
10:50:36 T:140191926216448 NOTICE: metahandler: No SQLite rows requiring update
10:50:36 T:140191926216448 NOTICE: script.pseudotv.live-ChannelList: Donor Import Failed, Disabling Donor FeaturesNo module named Donor
10:50:36 T:140191926216448 NOTICE: Previous line repeats 1 times.
10:50:36 T:140191926216448 NOTICE: Requesting
10:50:36 T:140191926216448 NOTICE: http://www.google-analytics.com/__utm.gi...5412809714
10:50:36 T:140191926216448 NOTICE: Pragma: no-cache
Expires: Wed, 19 Apr 2000 11:43:00 GMT
Last-Modified: Wed, 21 Jan 2004 19:51:30 GMT
X-Content-Type-Options: nosniff
Content-Type: image/gif
Date: Fri, 06 Jun 2014 15:36:52 GMT
Server: Golfe2
Content-Length: 35
Age: 317624
Cache-Control: private, no-cache, no-cache=Set-Cookie, proxy-revalidate
Alternate-Protocol: 80:quic
Connection: close
10:50:37 T:140191926216448 WARNING: Skin has invalid include: dialogeffect
10:50:37 T:140191926216448 ERROR: EXCEPTION: Non-Existent Control 120
10:50:45 T:140191926216448 NOTICE: movie|tt1602472|2|NA|NEW|NA


** The rest is here: http://pastebin.com/70Qfk5LH




beside this nothing happens.
no PVR, no XMLTV. just a clean settings2.xml with one playlist with no rules.
  • 1
  • 306
  • 307
  • 308(current)
  • 309
  • 310
  • 694

Logout Mark Read Team Forum Stats Members Help
[OLD/CLOSED] PseudoTV Live - Set-Top box solution45