NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public NextPVR Support Legacy (v4.x and earlier) v
« Previous 1 … 285 286 287 288 289 … 433 Next »
Marking a Show As Already Watched

Marking a Show As Already Watched
toricred
Offline

Senior Member

Posts: 250
Threads: 23
Joined: Aug 2006
#21
2012-10-27, 05:56 PM
It's also possible I messed them up when trying to update recurring recordings. So if I delete the offending recurring recordings through the GUI should that clean it up?
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,011
Threads: 956
Joined: May 2006
#22
2012-10-27, 06:24 PM
sub Wrote:The problem relates to manual recurring recording set to "all channels", and no advanced rules to narrow down the criteria. ie, its not possible to record on every channel at that same time of day. The recording would either need to specify a specific channel, or some advanced rule to limit it further.

Its not possible to create a recording like this using the screens the app provides, so I assume is a bug in Martin's import tool.

I am confused, (and also a bit disappointed that you didn't even have time to look at the database I sent you two weeks ago) since there is an advanced rule on the shows that I created and they look similar to the ones you create (I don't make them I use your API). Mine all of the 2012-09-01 date

Code:
<Rules><ChannelOID>0</ChannelOID><ChannelName>All Channels</ChannelName><StartTime>2012-09-01T06:00:00.0000000Z</StartTime><EndTime>2012-09-02T05:59:59.0000000Z</EndTime><PrePadding>1</PrePadding><PostPadding>2</PostPadding><Quality>0</Quality><Keep>0</Keep><AdvancedRules>title like 'Chicago Fire' and subtitle != '' and subtitle not in (select XmlLookup(event_details,'/Event/SubTitle') as subtitle from scheduled_recording where name like 'Chicago Fire') </AdvancedRules></Rules>

Martin
toricred
Offline

Senior Member

Posts: 250
Threads: 23
Joined: Aug 2006
#23
2012-10-27, 06:32 PM
Martin,

Are you speaking to me? I certainly didn't mean to accuse in any way, shape or form. I really think I messed them up.

I've now deleted all the ones that I screwed up and removed the advanced rules so hopefully that is fixed. Now how do I add an All Channels, All Episodes, All Times Recurring Recording? I thought I could do it through the guide, but those end up locked to a specific time of day and apparently a specific day. I could do them by manually manipulating the db3 file since I'm extremely familiar with SQL from work, but I'd rather do it the way you are supposed through through the GUI or NEWA.
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,011
Threads: 956
Joined: May 2006
#24
2012-10-27, 06:38 PM
No I quoted sub, I sent him your db because I wanted to have him look at a few things, and I still don't see what I doing wrong, and frankly his reply wasn't very helpful. I am still trying to iron this down to make better advanced rules for another utility I am making but I'd still like to make the ftr import better too.

Martin
toricred
Offline

Senior Member

Posts: 250
Threads: 23
Joined: Aug 2006
#25
2012-10-27, 06:45 PM
OK, good. Is there any way to create these for now? Like I said I could do it through SQL using one of the working rules as a sample, but I donvt quite trust it.
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,011
Threads: 956
Joined: May 2006
#26
2012-10-27, 06:53 PM
I want to wait for sub to tell me what is wrong with the rules. I can easily correct thing and rebuild from the FTR data if I know what I am doing wrong.

Martin
sub
Online

Administrator

NextPVR HQ, New Zealand
Posts: 106,753
Threads: 769
Joined: Nov 2003
#27
2012-10-27, 07:37 PM
This is an example of a recurring recording that is having a problem. ie, all channels, no advanced rule.
Code:
<Rules>
  <ChannelOID>0</ChannelOID>
  <ChannelName>All Channels</ChannelName>
  <StartTime>2012-09-01T06:00:00.0000000Z</StartTime>
  <EndTime>2012-09-02T05:59:59.0000000Z</EndTime>
  <PrePadding>1</PrePadding>
  <PostPadding>2</PostPadding>
  <Quality>QUALITY_BEST</Quality>
  <Keep>0</Keep>
</Rules>
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,011
Threads: 956
Joined: May 2006
#28
2012-10-27, 08:22 PM
My logic that adds should always have an advanced rules

Code:
if (isNew == false)
                                {
                                    string arule = "title like '" + title + "' and subtitle != '' and subtitle not in (select XmlLookup(event_details,'/Event/SubTitle') as subtitle from scheduled_recording where name like '" + title + "') ";
                                    myRecording = helper.ScheduleRecording(ename, 0, start, end, 1, 2, DayMask.ANY, 0,
                                        RecordingQuality.QUALITY_DEFAULT, arule);
                                }
                                else
                                {
                                    string arule = "title like '" + title + "'";
                                    myRecording = helper.ScheduleRecording(ename, 0, true, start, end, 1, 2, DayMask.ANY, 0,
                                        RecordingQuality.QUALITY_DEFAULT, arule);
                                }

Is it possible there is a conflict using the only new recordings with an advanced rule?

Martin
toricred
Offline

Senior Member

Posts: 250
Threads: 23
Joined: Aug 2006
#29
2012-10-27, 09:05 PM
After removing the apparently bad recurring recordings the EPG update ran without errors. Now I need to add back the problem series. If I find the shows in the guide and set up a recording for all episodes, any channel and then try to update the recurring recording it shows up as daily with a set date and time. Is this only a display problem?
sub
Online

Administrator

NextPVR HQ, New Zealand
Posts: 106,753
Threads: 769
Joined: Nov 2003
#30
2012-10-28, 02:13 AM
toricred Wrote:After removing the apparently bad recurring recordings the EPG update ran without errors. Now I need to add back the problem series. If I find the shows in the guide and set up a recording for all episodes, any channel and then try to update the recurring recording it shows up as daily with a set date and time. Is this only a display problem?
If you do an 'all episodes, all channels' recording, it'll record at any time. It does show the time of the original recording on the recurring page, but this isn't used for this type of recurring recording.
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (4): « Previous 1 2 3 4 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  Unable to revisit last watched channel Strike20Twenty 5 2,134 2020-02-25, 03:35 PM
Last Post: sub
  2020 TV Guide Doesn't Show up rmahlberg 14 9,456 2020-01-04, 06:43 PM
Last Post: sub
  Copy watched indication to new PC Haggis 4 1,553 2019-12-28, 09:25 PM
Last Post: Haggis
  EPG showing "no show details" for mapped channels iameric 3 2,427 2019-12-17, 12:00 AM
Last Post: iameric
  Watching Currently Recording TV Show. Play stops. acegolfer 15 4,724 2019-08-26, 12:36 AM
Last Post: mvallevand
  Replaced colossus - now "no show details" SilverTiger 7 2,297 2019-06-12, 11:15 AM
Last Post: SilverTiger
  Lost all "Playback Position" functions including green "Watched" bar! jcjefferies 8 2,469 2019-05-05, 10:05 AM
Last Post: jcjefferies
  No Show Detail on TV Guide Crosby87 3 2,371 2019-03-06, 02:49 AM
Last Post: sub
  Display "waiting" to show next frame + no display output. GuruSR 7 2,299 2019-03-05, 03:00 AM
Last Post: sub
  Issue with Beast IPTV recording - Skipping + Doesn't record full show abrupt ending russmehta01 3 3,034 2019-02-26, 09:20 PM
Last Post: sub

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode