NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Hardware v
« Previous 1 … 93 94 95 96 97 … 263 Next »
WDM Recorder using Software Compression

 
  • 0 Vote(s) - 0 Average
WDM Recorder using Software Compression
normanr
Offline

Posting Freak

Posts: 855
Threads: 3
Joined: Dec 2004
#811
2006-02-25, 09:00 PM
pBS: the easiest place to look for those pin names is in the driver install package. With my drivers the pins are defined in Prop7134.dll. If I open it up in a hex editor and search for P?r?e?v?i?e?w then it only finds 3 copies (same if I search for C?a?p?t?u?r?e) - the ?'s are because the text is unicode and has null's between each letter. It's possible that GraphEdit gets the pin count wrong because of the two pins with the same name. If you look at the GraphEdit xgr files, you'll notice it also uses the Pin names, so that wouldn't work either.

In fact, check that. See how GraphEdit tells the difference, if it can. Then try apply the same change to the config-recorders.xml file. When you re-open the graph with all the settings, have you been using gfr or xgr, and is the audio capture pin restored correctly?

Yea, I've seen reports everywhere that the ATI encoders have much lower CPU usage. I'm using the 'tweaked' ones that don't require an ATI card to be present.

JawBone: You need to set it to whatever source you're using, that way it can mute and unmute the device for you. It also uses it to select which source is used for recording. Try opening the windows mixer while you're in timeshifting mode and see if changing anything will make the sound start working. You will also need to swap the mixer to recording settings (via options > properties) to change the way sound is recorded, compared to playback. It should mute the playback mixer, but unmute the recording mixer. This might be the same switch on old card, can you confirm?

kmtrue: can you reduce the amount of code changes to maybe just a Stop, Run and see if it works? i.e. is the double tuning required? I'm tempted to make the code ignore the 'output' vs 'input' story. It really is a hack that it assumes that the DirectX mixer is named the same thing as the Windows Mixer control. Can you send a dump of your logs so that I can see exactly what needs tweaking. If you want you could also send a patch for the plugin Smile
JawBone
Offline

Junior Member

Posts: 25
Threads: 0
Joined: Feb 2006
#812
2006-02-25, 09:14 PM
I'm pickin' up what your layin' down.
I will test to see if it behaves as you described.

I notice that timeshift mode slows everything down a bit, is there anything that might speed this up. (i.e. changing channels)

Likewise, might you be able to point me to a place where I might locate the ATI encoders that have been 'tweaked'?
normanr
Offline

Posting Freak

Posts: 855
Threads: 3
Joined: Dec 2004
#813
2006-02-25, 09:21 PM
Timeshift will inherently be slow, try using Preview mode Smile

I've updated post #1, it now has a link to the article, which has a link to the download. It's a bit of a manual process to install the encoder, but it works fine.
JawBone
Offline

Junior Member

Posts: 25
Threads: 0
Joined: Feb 2006
#814
2006-02-25, 09:34 PM
Are you referring to the ATI Avivo Video Converter on post #1?
normanr
Offline

Posting Freak

Posts: 855
Threads: 3
Joined: Dec 2004
#815
2006-02-25, 09:37 PM
Yep, that's the one. There's also a thread in the gb-pvr forums about it.
kmtrue
Offline

Junior Member

Posts: 4
Threads: 0
Joined: Feb 2006
#816
2006-02-25, 09:43 PM
the double tuning is not required. I have modified to just do:

hr = mediaCtrl.Stop();
hr = mediaCtrl.Run();

and the recordings have audio.

In the zip file I have included a log where I was having the preview pin problem. I have also included the modified softwareRecorder.cs file.

You will see that I have hard-coded my specific mixer name. Not sure what your end-all solution would be. You could loop over all the mixers until you found what you needed. I'm not sure if there is a function call that would tell you the type of mixer you are looking at (input/output) to help limit your search....

I do have to say that I was surprised at how easy it was to figure out what was going on and how to patch it, nice work on the plugin!
JawBone
Offline

Junior Member

Posts: 25
Threads: 0
Joined: Feb 2006
#817
2006-02-25, 09:44 PM
Got it! I checked searched, and found a thread announcing its release. The EliteBastards site it refers to has removed the download due to bandwidth concerns. I did find it here, though.

http://downloads.guru3d.com/downloadget....0275957816

I will attempt to install and test.
BBS
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#818
2006-02-25, 10:04 PM
notice my xgr has the INPUT 'pin' and the output 'name' not both..Smile
<connect direct="yes" src="Video_Capture_Device" srcpin="6" dest="ACM_Wrapper" destpin="In"/>

and yes,the xgr DOES save the settings properly..from channel in tuner to ati encoder Big Grin

if i load a graph, save it, change the channel and save it as another file, and change encoder values and save as another file, each xgr retains the settings saved in it...and is slightly different altho i can't decypher the changes..
[tho changes *are* in the expected 'data']
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
normanr
Offline

Posting Freak

Posts: 855
Threads: 3
Joined: Dec 2004
#819
2006-02-25, 10:44 PM
hrm, GraphEdit has clearly got some cunning tricks up it's sleeve to solve the pins being called the same thing. The gb-pvr preview mode code needs to be change to support this, so this is something that sub needs to handle.
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#820
2006-02-25, 11:15 PM
actually the routing i need to do isn't on a crossbar at all! it's the capture device itself..i have 2 crossbars and one capture device,and the capture device is the one i need to rout, and since you rout with numbers in the xml i was wondering if i could manually get the capture device in there somehow so i manually specify it's routings myself..that would probably solve my problems with this capture device...what do you think? i'lll send a copy of my recorder config and a xgr of a working encoder and preview graph..
edit: man firefox is cool,i rebooted while playing with the usb device and firefox saved not only my page, but the text i was writing on the reply! came back and there it was...lol [i use session saver extension,it rocks!]
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
« Next Oldest | Next Newest »

Users browsing this thread: 3 Guest(s)

Pages (121): « Previous 1 … 80 81 82 83 84 … 121 Next »
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  Anyone got suggestions on TV tuner software? bakelmion 1 1,738 2021-10-19, 01:54 PM
Last Post: mvallevand
  HDHR Dual software settings? bisonfan 5 4,094 2015-09-18, 04:59 PM
Last Post: bisonfan
  looking 4 USB-capture software josee 4 5,008 2012-10-18, 04:43 PM
Last Post: johnsonx42
  MCE Remote WITHOUT ANY SOFTWARE! pBS 61 61,837 2012-09-13, 03:38 AM
Last Post: Wakalaka
  AMD Applies Final Coat of Polish to Catalyst 12.2 Software Suite OTAjunkie 5 3,034 2012-03-15, 07:27 AM
Last Post: b00sfuk
  Hauppauge WinTV HVR-1600 Hybrid Capture Card Software meccano 1 2,815 2011-08-14, 07:33 AM
Last Post: Reddwarf
  MCE remote and Hauppauge software Snooze 5 3,134 2011-04-06, 08:59 AM
Last Post: Sykor
  DVB-S card Software vs Hardware decoders #66 2 3,187 2010-12-20, 08:23 AM
Last Post: #66
  kwolrd 7135, or Phillips 7135 too old to be show on this software? pacoalcido 2 1,668 2010-06-09, 11:40 AM
Last Post: Reddwarf
  USB dual tuner w/hardware compression-39$US - Fry's pBS 6 2,880 2010-04-02, 06:25 PM
Last Post: ATHiker

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

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

Linear Mode
Threaded Mode