Log in

View Full Version : Anyone got the Hauppage HD 1212 PVR?


Grandy
18th August 2009, 13:59
http://www.hauppauge.com/site/products/data_hdpvr.html

I'll want to edit the files this generates with virtualdubmod, cut out clips and re-encode, naturally.

Possible?

I'll be capping football broadcasts mostly.

abyss616
11th September 2009, 20:12
I have it and use it for that exact purpose. I've only worked with it a few times since the season just started but so far it works pretty well.

I use avisynth scripts to load it into VDub to edit it.

Grandy
11th September 2009, 20:13
Can you give me your avisynth scripts?

abyss616
12th September 2009, 03:17
I'm by no means an Avisynth expert so I rely heavily on other's info. I got this from somewhere on this site, possibly from these forums and can take no credit for authoring them nor for their efficacy.

## 720p Source to DVD output
LoadPlugin("MPEG2Dec3.dll")
Loadplugin("FDecimate.dll")
LoadPlugin("BT709ToBT601.dll")
LoadPlugin("UnDot.dll")
MPEG2Source("HDCap.d2v",cpu=0)
Trim(1,2)+Trim(2,3)+Trim(3,4)+Trim(4,5) #Modify with actual ranges
FDecimate(rate=23.976,threshold=1.0) #Modify threshold as needed
LanczosResize(720,480)
BT709ToBT601()
UnDot()


## 720p Source to XviD output
LoadPlugin("MPEG2Dec3.dll")
Loadplugin("FDecimate.dll")
LoadPlugin("BT709ToBT601.dll")
LoadPlugin("UnDot.dll")
MPEG2Source("HDCap.d2v",cpu=0)
Trim(1,2)+Trim(2,3)+Trim(3,4)+Trim(4,5) #Modify with actual ranges
FDecimate(rate=23.976,threshold=1.0) #Modify threshold as needed
BT709ToBT601()
UnDot()

## 1080i Source to DVD output
LoadPlugin("MPEG2Dec3.dll")
Loadplugin("FDecimate.dll")
LoadPlugin("TomsMoComp.dll")
LoadPlugin("BT709ToBT601.dll")
LoadPlugin("UnDot.dll")
MPEG2Source("HDCap.d2v",cpu=0)
Trim(1,2)+Trim(2,3)+Trim(3,4)+Trim(4,5) #Modify with actual ranges
TomsMoComp(-1,5,1)
FDecimate(rate=23.976,threshold=1.0) #Modify threshold as needed
crop(8,6,-8,-10)
LanczosResize(720,480)
BT709ToBT601()
UnDot()

## 1080i Source to XviD output
LoadPlugin("MPEG2Dec3.dll")
Loadplugin("FDecimate.dll")
LoadPlugin("TomsMoComp.dll")
LoadPlugin("BT709ToBT601.dll")
LoadPlugin("UnDot.dll")
MPEG2Source("HDCap.d2v",cpu=0)
Trim(1,2)+Trim(2,3)+Trim(3,4)+Trim(4,5) #Modify with actual ranges
TomsMoComp(-1,5,1)
FDecimate(rate=23.976,threshold=1.0) #Modify threshold as needed
crop(8,6,-8,-10)
LanczosResize(1280,720)
BT709ToBT601()
UnDot()

Grandy
12th September 2009, 03:19
Hmmm...do I need a bunch of plugins to make this work? I may not have those.

abyss616
12th September 2009, 03:35
Good place to start: http://avisynth.org/warpenterprises/

What I meant to say is, don't go to that site.

Guest
12th September 2009, 03:37
Those filters are ancient and obsolete!

Grandy
12th September 2009, 03:39
Apparently they allow me to edit HD1212 PVR clips in virtualdubmod. That's all I really need/want.