NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Portal

Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 20,182
» Latest member: williams25
» Forum threads: 65,377
» Forum posts: 602,168

Full Statistics

Online Users
There are currently 1135 online users.
» 1 Member(s) | 1130 Guest(s)
Applebot, Baidu, Bing, Google, sub

Latest Threads
More than one HDPVR to th...
Forum: Hardware
Last Post: Joram
3 hours ago
» Replies: 0
» Views: 11
actors producer director
Forum: Wishlist
Last Post: a1blues
Yesterday, 09:20 PM
» Replies: 4
» Views: 42
Upcoming NextEnd addon an...
Forum: Add-ons (3rd party plugins, utilities and skins)
Last Post: mvallevand
Yesterday, 01:00 AM
» Replies: 1
» Views: 124
HDHomeRun can't find tune...
Forum: Linux
Last Post: mvallevand
2026-09-01, 05:58 PM
» Replies: 1
» Views: 115
Can't upgrade from 6.1.1....
Forum: NextPVR Support
Last Post: blobbyguts
2026-08-31, 10:56 AM
» Replies: 1
» Views: 93
NextEnd and NFL Preseason
Forum: Windows
Last Post: mvallevand
2026-08-30, 03:13 PM
» Replies: 1
» Views: 141
New version problem with ...
Forum: Windows
Last Post: Swami
2026-08-30, 12:23 AM
» Replies: 47
» Views: 3,824
DVB-T scanning issue - fo...
Forum: Docker amd64
Last Post: mvallevand
2026-08-28, 08:36 AM
» Replies: 1
» Views: 186
Channels not detected in ...
Forum: Windows
Last Post: mvallevand
2026-08-28, 03:57 AM
» Replies: 5
» Views: 3,454
Need help with hardened d...
Forum: Docker amd64
Last Post: bfg100k
2026-08-26, 02:41 AM
» Replies: 5
» Views: 365

 
  Do you want a printable version of the manual?
Posted by: blader_se - 2004-11-15, 07:40 AM - Forum: Forum Issues & Documentation - Replies (3)

Would anyone like a printed version of the manual?

You are all supposed to shout YES! now ;-)

http://www.bladerhq.com/pmwiki....include

Print this item

  Bug w/ wake for EPG
Posted by: chasef - 2004-11-15, 06:18 AM - Forum: GB-PVR Support (legacy) - Replies (1)

Sub,
I'm not sure but it looks like the config app isn't changing the wake for EPG update in the config.xml file. I have it selected in the config app but I don't show it enabled inside the config.xml file. Just wanted to let you know in case there's a problem.

Print this item

  ...Auto-update checker
Posted by: chasef - 2004-11-15, 06:01 AM - Forum: Wishlist - No Replies

Sub et. al,
I thought it might be nifty to have a little add-in in GB-PVR that will check somehwere (I assume on the gbpvr site) to see if there is a new release of the program or plug-ins that are currently in use. It's always nice to have a reminder when we forget to check the forums Wink Keep up the awesome work!

Print this item

  Changing ScheduledRecording Quality
Posted by: KingArgyle - 2004-11-15, 02:35 AM - Forum: Developers - Replies (10)

Sub, is there anyway to change a ScheduledRecording's default quality through the plugin API?

I'm playing around with the following code:

ScheduleHelper scheduleHelper = ScheduleHelper.getInstance();
ScheduledRecording scheduledRecording = scheduleHelper.SheduleRecording(program.getChannelOID(), program.getStartTime(), program.getEndTime(), program, GBPVR.Public.ScheduledRecording.TYPE_RECORD_ONCE, GBPVR.Public.ScheduledRecording.GROUP_NONE, null);
scheduledRecording.setQualitySetting(quality);

I can set the Quality, but I don't see an easy way to update an existing ScheduledRecording in the database, short of canceling it and then rescheduling it (which would miss my Quality Setting because scheduleHelper.ScheduleRecording() doesn't accept a quality parameter.

I'd like to give the optin on Manage recordings, to change the Quality setting a scheduled recording has through the Web UI.

Print this item

  MAP Track Listings
Posted by: SuperDave - 2004-11-15, 01:50 AM - Forum: Developers - Replies (1)

Can anyone tell me how to get the tracks to list numerically instead of alphabetically?

Thanks!

Print this item

  Dual XMLTV sources question
Posted by: tieke - 2004-11-15, 12:42 AM - Forum: GB-PVR Support (legacy) - Replies (3)

Been using GBPVR quite a bit recently, but ran into some problems with my main XMLTV source, in that its support for the three major free-to-air channels was getting pretty patchy.

I found a better XMLTV source for these channels, and thought the simplest way to use both of these was to add another capture source, with the same capture card (I have only one) but a different XMLTV source.  I then deselected these channels from loading with my standard source, and made sure that my combined channel listing was in the right order via the channel tab.

This has worked well, and I now have a much more reliable program guide.  The only problem is that if I try and schedule a recording on one of the free-to-air channels at the same time as a recording is already set on one of the cable channels, GBPVR doesn't pick this up as a conflict, as they are on two different capture sources (although are using the one card).

Is there a better way for me to setup dual XMLTV sources, or to convince GBPVR to check the other capture source for scheduling conflicts?

Print this item

  Search for Episodes by Keyword
Posted by: KingArgyle - 2004-11-14, 11:37 PM - Forum: Developers - No Replies

Here is some C# source code for searching for an Episode by Keyword. This only checks the title, and the function can be modified for anybody's use. Since I wanted to learn C# (amazing how much like Java it is. Wink ) and GBPVR was missing a more robust search method to find episodes, I figured I'd give this a whirl. Took about a half hour to get working, but this will take a keyword, and search all channels from the current date and time to an ending date 30 days out. It'll return all episodes that have that keyword in the title. I believe Jorm is planning on implementing something like this for the UI, I may try and get this implemented for the Web Interface as well. I don't plan to use the UI too much, just the recording engine.

Anyway, here is the function, feel free to modify it and use it as you wish in your own plugins.

<table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">
private static void SearchForEpisodeByTitle() {
ScheduleHelper scheduleHelper = ScheduleHelper.getInstance();
// Search for an episode listing, set the start time and the end time
DateTime startTime = DateTime.Now;
DateTime endTime = startTime.AddDays((double) 30);
String searchFor = "Apprentice";

IList allChannels = scheduleHelper.GetListingsForTimePeriod(startTime, endTime);
foreach (Channel channel in allChannels) {
foreach (Programme program in channel.getProgrammeList()) {
String findString = program.getTitle().ToUpper();

if (findString.IndexOf(searchFor.ToUpper(), 0) >= 0) {
Console.WriteLine("Found: " + searchFor);
Console.WriteLine("Title: " + program.getTitle());
Console.WriteLine("Channel: " + channel.channelName);
Console.WriteLine("Start Time: " + program.getStartTime().ToLongDateString() + " " + program.getStartTime().ToLongTimeString());
Console.WriteLine("End Time: " + program.getEndTime().ToLongDateString() + " " + program.getStartTime().ToLongTimeString());
}
}
}
}
[/QUOTE]

Print this item

  Burn Episode to DVD
Posted by: steve1999_CA - 2004-11-14, 09:02 PM - Forum: Developers - Replies (12)

Does anyone have a guide on how to take recorded episodes and burn them as DVD's?

I'm thinking about creating a plugin to do it if it proves feasible, but my specialty is programming, not video.

Print this item

  Record search words.
Posted by: PVR(SWE) - 2004-11-14, 07:27 PM - Forum: Wishlist - Replies (1)

Must start by saying that this project has gone a long way and that I like it a lot. SUB you are great.

The plugin that I would like to have is a key word function which will store key words in a separet file. When the EPG is updated it will look through that file, and if it finds a match in the EPG it will be recorded.

Example: In the file I put in &quot;Sylvester Stallone&quot; and in the EPG it will find Rocky I with Sylvester Stallone. Then it will get recorded.

Hope you all get what I mean.

Cheers /Jonas

Print this item

  Burn Episode to DVD
Posted by: steve1999_CA - 2004-11-14, 06:57 PM - Forum: GB-PVR Support (legacy) - Replies (5)

Does anyone have a guide on how to take recorded episodes and burn them as DVD's?

I'm thinking about creating a plugin to do it if it proves feasible, but my specialty is programming, not video.

Print this item

Pages (6435): « Previous 1 … 6143 6144 6145 6146 6147 … 6435 Next »
Jump to page 

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