NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Forum Issues & Documentation NPVR Documentation v
1 2 3 4 5 Next »
Hauppauge SoftPVR Wiki page

 
  • 0 Vote(s) - 0 Average
Hauppauge SoftPVR Wiki page
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#11
2013-08-27, 11:33 PM
thanks...didn't know about the migration issue, now added to wiki...Smile

hmm,what's the old wiki address? i need to copy some text off the old one..
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
thisheat
Offline

Junior Member

Posts: 40
Threads: 1
Joined: Apr 2013
#12
2013-08-28, 03:30 AM
http://www.gbpvr.com/pmwiki/
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#13
2013-08-30, 09:35 PM
here's a copy of the adjusted batch file for installation.. for posterity's sake..
finally tested on 64bit and win7..had to adjust for vista+'s changes to reg.exe..[spaces are delim vs. tabs for xp]

Code:
@ECHO OFF
@rem Modified by: PBS
@echo.
@ECHO ********************************************************
@ECHO SoftPVR installer for Analog devices. (32 OR 64 bit OS)
@ECHO ********************************************************
@echo.

@rem         Check for admin rights and echo msg and exit if none.....
net session >nul 2>&1
    if %errorLevel% == 0 (
        @echo Success: Administrative permissions confirmed.
    ) else (
        @echo Failure: Current permissions inadequate. This script needs to be run with Admin priviledges..
pause
exit
    )
cd /d "%~dp0"
@echo.


@rem     This line detects 32bit or 64bit..
@IF DEFINED ProgramFiles(x86) (
set sysdir=Syswow64
set softnode=SOFTWARE\Wow6432Node
) else (
set sysdir=System32
set softnode=SOFTWARE
)
@echo This machine's system dir is         "%systemroot%\%sysdir%"
@echo And it's software registry section is     HKLM\%softnode%\NPVR
@echo.

@rem    This line detects actual NPVR dir from registry and puts it in variable %npvrdir%, no matter where it's installed..
@for /f "skip=2 tokens=1,2,* delims=     " %%A in ('reg query "HKLM\%softnode%\NPVR" /v InstallDirectory') do set npvrdir=%%C
@echo NPVR directory is             "%npvrdir%"
@ECHO.

@ECHO Creating Temp folders
@MD "%npvrdir%\SoftPVR\temp1"
@MD "%npvrdir%\SoftPVR\temp2"
@ECHO.

@ECHO Extracting WinTV installer

@rem         This line lists dir for files starting with wintv7_cd_ by date and executes only newest one [regardless of filename ending] with params....
for /f %%f in ('dir /b /o:-d "wintv7_cd_*.exe"') do (
"%%~f" /x %npvrdir%\SoftPVR\temp1
goto :next
)

@rem             Missing wintv7_*.exe file error message...
@if errorlevel 1 (@echo.
@echo NO WINTV7_cd_*.exe file found!!!
@echo Download file first and place in %npvrdir%\softpvr\
@echo [create dir if needed]
@echo.
pause
exit)
:next

@rem         Executing extracted wintv7setup.exe
"%npvrdir%\SoftPVR\temp1\WinTV7Setup.exe" /x %npvrdir%\SoftPVR\temp2

@ECHO.
@ECHO Copying required files
COPY "%npvrdir%\SoftPVR\temp2\hcw_mcl2ae.ax" "%npvrdir%\SoftPVR\"
COPY "%npvrdir%\SoftPVR\temp2\hcw_mcm2ve.ax" "%npvrdir%\SoftPVR\"
COPY "%npvrdir%\SoftPVR\temp2\hcw_mcmpeg2mux.ax" "%npvrdir%\SoftPVR\"
COPY "%npvrdir%\SoftPVR\temp2\hcw_mcmpgaout.dll" "%npvrdir%\SoftPVR\"
COPY "%npvrdir%\SoftPVR\temp2\hcw_mcmpgvout.004" "%npvrdir%\SoftPVR\"
COPY "%npvrdir%\SoftPVR\temp2\hcw_mcmpgvout.dll" "%npvrdir%\SoftPVR\"
@ECHO.

@rem These lines register filters, showing and pausing only if error occurs..
@ECHO Registering files

%SystemRoot%\%sysdir%\Regsvr32.exe /s "%npvrdir%\SoftPVR\hcw_mcl2ae.ax"
@if errorlevel 1 (@echo **** "%npvrdir%\SoftPVR\hcw_mcl2ae.ax" was NOT REGISTERED correctly!!!!! ********************&& pause)

%SystemRoot%\%sysdir%\Regsvr32.exe /s "%npvrdir%\SoftPVR\hcw_mcm2ve.ax"
@if errorlevel 1 (@echo **** "%npvrdir%\SoftPVR\hcw_mcm2ve.ax" was NOT REGISTERED correctly!!!!! ********************&& pause)

%SystemRoot%\%sysdir%\Regsvr32.exe /s "%npvrdir%\SoftPVR\hcw_mcmpeg2mux.ax"
@if errorlevel 1 (@echo **** "%npvrdir%\SoftPVR\hcw_mcmpeg2mux.ax" was NOT REGISTERED correctly!!!!! ********************&& pause)
@ECHO.

@ECHO Deleting Temp Folders
RD "%npvrdir%\SoftPVR\temp1\" /s /q
RD "%npvrdir%\SoftPVR\temp2\" /s /q
@ECHO.
@ECHO       Successful!!
@ECHO.

pause
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
steeb
Offline

Posting Freak

Posts: 2,667
Threads: 183
Joined: Nov 2006
#14
2013-08-31, 10:58 PM
Thank you pBS,

this looks really quite brilliant but then I would never have expected less than that from you Big Grin

I always had a problem with the SoftPVR page/s. I do hope that this makes it easier for new users.

Most excellent.

cheers very much

steeb
[SIZE="1"]When you have eliminated the impossible, whatever remains, however improbable, must be the truth.[/SIZE]

[SIZE="2"]NextPVR Documentation (wiki) admin/contributor[/SIZE]

profile on wiki & computer specifications
Zeb
Offline

Senior Member

U.S.A.
Posts: 596
Threads: 2
Joined: Dec 2012
#15
2013-10-01, 04:46 PM
pBS Wrote:has anyone tried my batch on a 64bit machine?

A recent thread strongly suggests that the batch needs further revision for 64bit systems: http://forums.nextpvr.com/showthread.php...-this-time

If the previous download SoftPVR_64bit.zip can be retrieved, it might be helpful for the time being to post it here or there.
whurlston
Offline

Posting Freak

Posts: 7,885
Threads: 102
Joined: Nov 2006
#16
2013-10-01, 06:54 PM
Zeb Wrote:A recent thread strongly suggests that the batch needs further revision for 64bit systems: http://forums.nextpvr.com/showthread.php...-this-time
The problem with the script on the wiki wasn't due to 64bit, it was due to an issue with UAC I think. On Windows 8, I was not able to get it to work using temp folders in the NPVR program directory. All the temporary extractions had to be performed in c:\temp. Here is the updated script that worked (I used it on Win8.1 x64): http://forums.nextpvr.com/showthread.php...post463790
Zeb
Offline

Senior Member

U.S.A.
Posts: 596
Threads: 2
Joined: Dec 2012
#17
2013-10-01, 09:39 PM (This post was last modified: 2013-11-03, 07:48 PM by Zeb.)
I'm sure you are correct whurlston. However judging by subsequent posts in that thread, your updated script might not work perfectly with Win7SP1.

[November 3] Here's a new thread showing batch file failure on Windows 8: http://forums.nextpvr.com/showthread.php...post466719
whurlston
Offline

Posting Freak

Posts: 7,885
Threads: 102
Joined: Nov 2006
#18
2013-10-01, 11:28 PM
Thats possibly true. I dont have an analog tuner installed at the moment to test it.
mmidgley
Offline

Junior Member

Posts: 3
Threads: 0
Joined: Oct 2017
#19
2017-10-08, 11:33 PM
Greetings. I've been using NextPVR 4.0.4 (170820) on Win 10.0.14393 to record ATSC over the air TV. I'd like to now use the analog composite input on the Hauppauge 1250 card.

I followed the instructions for using softpvr.bat and wintv85setup_35270.exe and got the files registered. The "Hauppauge WinTV 885 Video Capture" analog recorder now appears in Devices:

Type Device Present Enabled Channels
ATSC Hauppauge WinTV 885 ATSC Tuner/Demod Yes Yes 26
Analog Hauppauge WinTV 885 Video Capture Yes Yes 0
...

However, when I go into Device Setup for "Hauppauge WinTV 885 Video Capture" and attempt to add any channel (Composite or other) I get an "Add Channel" dialog stating there was an Unhandled exception in a component in your application. Details:

Code:
See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
System.NullReferenceException: Object reference not set to an instance of an object.
   at NShared.AddAnalogChannelForm.buttonOK_Click(Object sender, EventArgs e)
   at System.Windows.Forms.Control.OnClick(EventArgs e)
   at System.Windows.Forms.Button.OnClick(EventArgs e)
   at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
   at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
   at System.Windows.Forms.Control.WndProc(Message& m)
   at System.Windows.Forms.ButtonBase.WndProc(Message& m)
   at System.Windows.Forms.Button.WndProc(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
   at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)


************** Loaded Assemblies **************
mscorlib
    Assembly Version: 4.0.0.0
    Win32 Version: 4.7.2110.0 built by: NET47REL1LAST
    CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll
----------------------------------------
NextPVR
    Assembly Version: 1.0.0.0
    Win32 Version: 1.0.0.0
    CodeBase: file:///C:/Program%20Files%20(x86)/NPVR/NextPVR.exe
----------------------------------------
NUtility
    Assembly Version: 1.0.0.0
    Win32 Version: 1.0.0.0
    CodeBase: file:///C:/Program%20Files%20(x86)/NPVR/NUtility.DLL
----------------------------------------
System.Windows.Forms
    Assembly Version: 4.0.0.0
    Win32 Version: 4.7.2106.0 built by: NET47REL1LAST
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
----------------------------------------
System
    Assembly Version: 4.0.0.0
    Win32 Version: 4.7.2110.0 built by: NET47REL1LAST
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
System.Drawing
    Assembly Version: 4.0.0.0
    Win32 Version: 4.7.2053.0 built by: NET47REL1
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
System.Data
    Assembly Version: 4.0.0.0
    Win32 Version: 4.7.2102.0 built by: NET47REL1LAST
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_32/System.Data/v4.0_4.0.0.0__b77a5c561934e089/System.Data.dll
----------------------------------------
System.Core
    Assembly Version: 4.0.0.0
    Win32 Version: 4.7.2106.0 built by: NET47REL1LAST
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll
----------------------------------------
NShared
    Assembly Version: 1.0.0.0
    Win32 Version: 1.0.0.0
    CodeBase: file:///C:/Program%20Files%20(x86)/NPVR/NShared.DLL
----------------------------------------
System.Data.SQLite
    Assembly Version: 1.0.85.0
    Win32 Version: 1.0.85.0
    CodeBase: file:///C:/Program%20Files%20(x86)/NPVR/System.Data.SQLite.DLL
----------------------------------------
System.Data.Entity
    Assembly Version: 4.0.0.0
    Win32 Version: 4.7.2102.0 built by: NET47REL1LAST
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Data.Entity/v4.0_4.0.0.0__b77a5c561934e089/System.Data.Entity.dll
----------------------------------------
System.Xml
    Assembly Version: 4.0.0.0
    Win32 Version: 4.7.2102.0 built by: NET47REL1LAST
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
----------------------------------------
System.Transactions
    Assembly Version: 4.0.0.0
    Win32 Version: 4.7.2053.0 built by: NET47REL1
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_32/System.Transactions/v4.0_4.0.0.0__b77a5c561934e089/System.Transactions.dll
----------------------------------------
System.Configuration
    Assembly Version: 4.0.0.0
    Win32 Version: 4.7.2053.0 built by: NET47REL1
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
----------------------------------------
System.EnterpriseServices
    Assembly Version: 4.0.0.0
    Win32 Version: 4.7.2053.0 built by: NET47REL1
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_32/System.EnterpriseServices/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll
----------------------------------------
Unmanaged
    Assembly Version: 1.0.6426.14303
    Win32 Version:
    CodeBase: file:///C:/Program%20Files%20(x86)/NPVR/Unmanaged.DLL
----------------------------------------
System.Runtime.Remoting
    Assembly Version: 4.0.0.0
    Win32 Version: 4.7.2114.0 built by: NET47REL1LAST
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Runtime.Remoting/v4.0_4.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll
----------------------------------------
SlimDX
    Assembly Version: 4.0.13.43
    Win32 Version:
    CodeBase: file:///C:/Program%20Files%20(x86)/NPVR/SlimDX.DLL
----------------------------------------
taglib-sharp
    Assembly Version: 2.0.4.0
    Win32 Version: 2.0.4.0
    CodeBase: file:///C:/Program%20Files%20(x86)/NPVR/taglib-sharp.DLL
----------------------------------------
ManagedUPnP
    Assembly Version: 2.0.0.0
    Win32 Version: 2.0.0.0
    CodeBase: file:///C:/Program%20Files%20(x86)/NPVR/ManagedUPnP.DLL
----------------------------------------
CustomMarshalers
    Assembly Version: 4.0.0.0
    Win32 Version: 4.7.2053.0 built by: NET47REL1
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_32/CustomMarshalers/v4.0_4.0.0.0__b03f5f7f11d50a3a/CustomMarshalers.dll
----------------------------------------
System.Management
    Assembly Version: 4.0.0.0
    Win32 Version: 4.7.2102.0 built by: NET47REL1LAST
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Management/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Management.dll
----------------------------------------
Accessibility
    Assembly Version: 4.0.0.0
    Win32 Version: 4.7.2053.0 built by: NET47REL1
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Accessibility/v4.0_4.0.0.0__b03f5f7f11d50a3a/Accessibility.dll
----------------------------------------

************** JIT Debugging **************
To enable just-in-time (JIT) debugging, the .config file for this
application or computer (machine.config) must have the
jitDebugging value set in the system.windows.forms section.
The application must also be compiled with debugging
enabled.

For example:

<configuration>
    <system.windows.forms jitDebugging="true" />
</configuration>

When JIT debugging is enabled, any unhandled exception
will be sent to the JIT debugger registered on the computer
rather than be handled by this dialog box.

Ideas?
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,823
Threads: 769
Joined: Nov 2003
#20
2017-10-09, 12:30 AM
mmidgley, there is an updated NUtilities.dll that fixes this problem with analog devices in the current build:
https://forums.nextpvr.com/showthread.ph...post517716
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

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


Possibly Related Threads…
Thread Author Replies Views Last Post
  v4 Wiki is set Read Only ? Lao Pan 8 5,826 2019-12-14, 05:15 PM
Last Post: sub
  Become a Documentation Author (Wiki account request) McBainUK 144 81,277 2016-11-13, 07:51 PM
Last Post: sub
  Wiki page incorrect content - BatchFiles JavaWiz 1 5,798 2015-11-01, 12:26 AM
Last Post: ACTCMS
  Wiki page incorrect content - BatchFiles JavaWiz 0 4,996 2015-11-01, 12:13 AM
Last Post: JavaWiz
  Wiki Download Counters No Longer Working? Lao Pan 3 6,820 2015-09-04, 05:33 PM
Last Post: imilne
  New Zealand Freeview Setup with Hauppauge HVR3000 wodger 17 27,856 2015-08-09, 09:30 PM
Last Post: wodger
  Newa and more wiki wide steeb 16 14,816 2014-09-13, 12:49 AM
Last Post: steeb
  Anyone out there for wiki? steeb 0 5,607 2014-06-08, 12:02 AM
Last Post: steeb
  Help with IPTV device wiki page McBainUK 11 17,803 2013-07-22, 09:57 PM
Last Post: steeb
  How do I add a new utility to the wiki "Utilities" section? bgowland 8 9,620 2013-04-17, 11:00 PM
Last Post: ACTCMS

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

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

Linear Mode
Threaded Mode