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,053
» Latest member: lunnar
» Forum threads: 64,994
» Forum posts: 595,435

Full Statistics

Online Users
There are currently 1409 online users.
» 2 Member(s) | 1403 Guest(s)
Applebot, Bing, Google, Yandex, mvallevand, pcostanza

Latest Threads
Streaming Failed (transco...
Forum: Windows
Last Post: mvallevand
3 hours ago
» Replies: 7
» Views: 151
Manual recordings
Forum: Windows
Last Post: Joram
10 hours ago
» Replies: 7
» Views: 68
Proxmox LXC (Helper Scrip...
Forum: Linux
Last Post: mvallevand
11 hours ago
» Replies: 1
» Views: 25
Any chance to find a V6 d...
Forum: Linux
Last Post: joe_d1
Yesterday, 10:36 PM
» Replies: 6
» Views: 77
Comskip for the web clien...
Forum: NextPVR Support
Last Post: mvallevand
Yesterday, 10:13 PM
» Replies: 4
» Views: 43
Recording interrupted
Forum: NextPVR Support
Last Post: mvallevand
Yesterday, 04:41 PM
» Replies: 1
» Views: 31
NextEnd v5 trial release
Forum: Add-ons (3rd party plugins, utilities and skins)
Last Post: BrettB
Yesterday, 03:54 PM
» Replies: 442
» Views: 91,344
Aspect ratio
Forum: Kodi / XBMC
Last Post: mvallevand
Yesterday, 01:50 PM
» Replies: 1
» Views: 42
No LiveTV or Recording on...
Forum: Windows
Last Post: cher
Yesterday, 10:21 AM
» Replies: 2
» Views: 103
EPlusTV
Forum: NextPVR Support
Last Post: hdpvr-doug8796
2025-10-04, 07:14 PM
» Replies: 8
» Views: 199

 
  Help : Snazzi TV PVR
Posted by: bbi - 2005-11-18, 05:05 AM - Forum: GB-PVR Support (legacy) - Replies (1)

I recently purchased one Snazzi TV PVR (Pal edition), I am from India. The TV PVR hardware uses WDM driver. Yesterday I installed gbpvr, but I could not able to tune for live tv watching. It cannot recognise the CARD.

I shall be thankful for help regarding successful configuration and live tv viewing.

Print this item

  Help: October 30 "Meet the Press"
Posted by: jusatry - 2005-11-18, 03:58 AM - Forum: General Discussion - Replies (9)

Hi all,

I am looking for a video of the October 30, 2005 "Meet the Press." I have searched online pretty extensivly, and found a transcript of said show, the podcast of the most recent show, and clips of the show in question, but they leave out the section I need to track down. I searched limewire and a few torrent sites, though I don't usually use torrent so I don't know if I used the best engines.

Can anyone help me out here? Anybody happen to PVR it and still have it?!? Any ideas how to get this video? I don't even mind paying (reasonably) for it, but I do need to find it.

What thinks you?

Print this item

  Trouble with trailers
Posted by: itc_sburnett - 2005-11-18, 03:18 AM - Forum: Old Stuff (Legacy) - No Replies

In the Theater plugin I dont see the button to play the plugins. I have edited the config file. All the trailers are in 'c:\trailers' and are still in the .mov format (although I did add a mpg file and renamed it to one of the movies.)

In the My Videos plugin, I am also not able to get the intros or Start Trailers to function. I have placed a short mpg file in the directory to see if that helps(it didnt).

I saw some references to transcoding and Xrecorder. Theres little in the WIKI about it. Any pointers would be appreciated.

Print this item

  Is there a way to change the bit rate?
Posted by: vifa84 - 2005-11-18, 01:55 AM - Forum: GB-PVR Support (legacy) - Replies (2)

I have a hauppauge pvr150 and I am pretty impressed with this program. Is there a way to have more control over video size and bit rate besides low, med and high?

Print this item

  Remote Functions
Posted by: Big Stan - 2005-11-18, 12:40 AM - Forum: GB-PVR Support (legacy) - Replies (4)

Is there a list somewhere of what all the buttons on the 45 button remote do. Like the color buttons at the bottom.

Print this item

  Dvd2mpeg
Posted by: Ron22 - 2005-11-18, 12:34 AM - Forum: Old Stuff (Legacy) - No Replies

I have two questions about DVD2MPEG
First is there a way to have it use MPLEX and make more than one file if needed? I alway just end up doing this by had. Of course after my wife finds out the ending of the movie is missing. I use Video Redo to join them.
Second I just bought Madagascar and tried to convert it and I had the problem above. It made 4 files. I joined 2 & 3 only becuase 1 and 4 were really small. Now my wife is saying the voices do not match the video.

Print this item

  VMR9 vs Overlay
Posted by: capone - 2005-11-17, 11:42 PM - Forum: General Discussion - Replies (2)

I ran Overlay the other day, and aside from needing some new color settings from my VMR9, it runs really fast.

Aside from less cool-looking OSDs, what are the reasons for not using it? What are people using?

I've just realized how high my processing runs lately, w/ the post-processing I have going on (resize, resample, etc). It would be nice to lower the peaks a little.

Print this item

  Anyone got IVideoPlugin working?
Posted by: jorm - 2005-11-17, 10:59 PM - Forum: Developers - Replies (6)

below is my render method for a caller id plugin. I see that the mode is set correctly.

The section in bold is invoked. The image is correct I can save it to a file. I return it, but I never see it on top of the video. I do implement the IVideoPlugin interface and have it in the config.xml I see all of the other methods get invoked.

Ideas?

public Image render(out bool requiresMoreRendering)
{
requiresMoreRendering = false;
renderAgain = false;

// reset clickable regions
clickableNames = new Hashtable();

// alpha blend with background
float[][] matrixItems ={ // Note the value 0.8 in row 4, column 4.
new float[] {1, 0, 0, 0, 0},
new float[] {0, 1, 0, 0, 0},
new float[] {0, 0, 1, 0, 0},
new float[] {0, 0, 0, 0.8f, 0},
new float[] {0, 0, 0, 0, 1}};
ColorMatrix colorMatrix = new ColorMatrix(matrixItems);

ImageAttributes imageAttr = new ImageAttributes();
imageAttr.SetColorMatrix(
colorMatrix,
ColorMatrixFlag.Default,
ColorAdjustType.Bitmap);

// prepare background

// foregroundImage = new Bitmap(720,480);
Graphics g = Graphics.FromImage(foregroundImage);

// g.Clear(Color.Transparent);
g.SmoothingMode = SmoothingMode.AntiAlias;

Font generalFont = skinHelper.getNamedFont("GeneralText");
Brush generalFontBrush = skinHelper.getNamedFontBrush("GeneralText");
Font selectedGeneralFont = skinHelper.getNamedFont("SelectedGeneralText");
Brush selectedGeneralFontBrush = skinHelper.getNamedFontBrush("SelectedGeneralText");
Brush selectionBrush = skinHelper.getNamedBrush("Selection");


if ( this.bVideoMode )
{
string displayString = szLabel + "... (" + DateTime.Now.ToShortTimeString() + ")\n" + szName + _name + "\n" + szNumber + _number;


g = Graphics.FromImage(compositeScreenImage);
g.FillRectangle(new SolidBrush(GBPVR.Public.PluginHelperFactory.getPluginHelper().GetOSDTransparentColor()),0,0,720,480);

//g.FillRectangle( new SolidBrush(Color.Black), new Rectangle(5, 105, 305, 25) );
g.DrawString( displayString, generalFont, generalFontBrush, new Rectangle(10, 100, 300, 20) );
Logger.Info("Drawing string " + displayString );
//return ( foregroundImage );
return ( compositeScreenImage );
}
else
{
Graphics.FromImage(backgroundImage).DrawImage(backgroundPicture, 0,0,backgroundPicture.Width,backgroundPicture.Height);
g.Clear(Color.Transparent);


// g.DrawString( "Call Data " + szCallData, generalFont, generalFontBrush, new Rectangle(10, 10, 300, 20) );
// g.DrawString( "Adj Call Data " + szAdjustedCallData, generalFont, generalFontBrush, new Rectangle(10, 40, 300, 20 ) );
// g.DrawString( "Label " + szLabel, generalFont, generalFontBrush, new Rectangle(10, 70, 300, 20) );
g.DrawString( "Number " + szNumber, generalFont, generalFontBrush, new Rectangle(10, 100, 300, 20) );

Graphics.FromImage(backgroundImage).DrawImage(foregroundImage, new System.Drawing.Rectangle(0,0,720,480),0,0,720,480,GraphicsUnit.Pixel,imageAttr);
return ( backgroundImage );
}


// return blended result
return backgroundImage;
}

Print this item

  gbpvr MVP und TT-DVB-S
Posted by: coolbetie - 2005-11-17, 10:23 PM - Forum: MVP & NMT - Replies (6)

Guten Abend
spricht hier auch jemand Deutsch und kann mir helfen?
Ich weiß das es ein engl. Forum ist, aber mein engl. ist leider nicht so gut und ich habe mich jetzt 2 Tage durch das Forum gekämpft (als Gast) aber bin leider nicht zum Erfolg gekommen.
Ich habe eine DVB-S TT-Premium und habe mir jetzt einen MVP zugelegt. Meine Frage ist geht das ueberhaupt und wie muss ich das ganze konfigurieren? Die Karte wird als Sigma Designs XCard erkannt nehme ich an, da Einstellungen möglich sind=>es passiert aber nichts Sad

Als Hintergrund => ich möchte einen Media-Server betreiben der über den MVP bedient wird und fuer die Ausgabe verantwortlich ist.

Der Server ist ein Athlon 900MHz mit einem Shuttle MK32N Board mit 256MB, also ein aelteres System

Zur Zeite Teste ich auf einem Asus A7N8X-E Deluxe mit einem XP2500 und 512MB eigentlich auch aelterRolleyes

Also wuerde mich freuen wenn mir jemand helfen kann?
Danke und schoenen Abend noch!

Print this item

  Recording TV - Change the format ??
Posted by: Here's Jonny - 2005-11-17, 09:58 PM - Forum: GB-PVR Support (legacy) - Replies (2)

Currently I'm saving my recordings as DVR-MS..

Anyway to change this to an other format ??

MPG ??

Thanks

Print this item

Pages (6401): « Previous 1 … 5303 5304 5305 5306 5307 … 6401 Next »
Jump to page 

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