NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Add-ons (3rd party plugins, utilities and skins) Old Stuff (Legacy) v
1 2 3 4 5 … 125 Next »
Graph and TVPI external recorder beta

 
  • 0 Vote(s) - 0 Average
Graph and TVPI external recorder beta
carpeVideo
Offline

Posting Freak

Posts: 824
Threads: 23
Joined: Dec 2006
#131
2007-09-12, 07:42 PM
Quote:Originally Posted by psicotron3 View Post
Besides the unmute/mute, the selection for what mixer line is used for capture works very well here. It´s changed as soon as the recording starts. Looks like it´s based on searching the "Audio Capture Filter" inside your graph and selecting a matching entry. You may try to search on the filter properties and see if it can be selected there and what is the name of "CD In" (That was the case here with "Line In" using a different name).
OK, I'll have a closer look at this tomorrow. When I tested it today, enabling the CD In mixer input didn't work, but perhaps I can work it out. Let's see ...


Audio is a little confusing on windows - there are filters for input mixers in Direct Show but none for output so you have to use two different sets of code. If you use a mixer and don't force the input it will use whatever setting is on the mixer at the time the graph is opened. (which means it may have been muted by a user or another application.)

psicotron is correct the input mixer must be a filter in your graph if you are recording, otherwise the force enabling of the audio won't work since gr is looking at the filters in the graph to set that. There is also another nuance for input mixers you can usually find two filters for the same input - one in "audio capture devices" and one in "WDM streaming capture devices"

In Live Preview using these filters directly in the graph they may have slightly different behaviors one usually lags the video. This is why psicotron requested the option of simply unmuting/muting a playback source (which is on the output mixer) and playing it directly. If you use both I would imagine you'll have two offset audio streams at the same time.

I'll have to do some experiment because just writing this explanation is giving me some ideas as to what the issue might be. All of this can be done manually by playing a preview graph and using the mixer control to see what happens with sound.

CV
MediaDept
Offline

Junior Member

Posts: 22
Threads: 4
Joined: Sep 2007
#132
2007-09-13, 12:19 PM
Hi,

today I tested the new version of the 1.5. The new audio settings dialog is perfect and works as expected (at least the muting/unmuting part). The problem with my sound card was, the the lines aren't called "CD In" or "Line In" but "CD Volume" respectively "Line Volume". So getting the right line identifier isn't only language related but also audio card related.

Forcing the right input line doesn't work on my audio card, as the filters in the graph get enumerated Sad That is my capture device is called "Realtek HD Audio Input" but the filter in the graph is called "Realtek HD Audio Input 0001" as you can see in the recorder logs:

Code:
2007-09-13 12:32:18.968    VERBOSE    [4]    RecorderHelperConfig: LoadElement: inputMixerName=Realtek HD Audio Input
2007-09-13 12:32:18.968    VERBOSE    [4]    RecorderHelperConfig: LoadElement: outputMixerName=Realtek HD Audio output
2007-09-13 12:32:18.968    VERBOSE    [4]    RecorderHelperConfig: LoadElement: mixerLineIn=CD Volume
2007-09-13 12:32:18.968    VERBOSE    [4]    RecorderHelperConfig: LoadElement: mixerLineOut=CD Volume

[...]

2007-09-13 12:51:23.765    VERBOSE    [5]    ***** Graph Record: current file =
    New file = C:\Temp\Manual Recordings\France 5_20070913125000.mpg
2007-09-13 12:51:23.765    VERBOSE    [5]    Graph Recorder: Change Graph: looking at filter: Ulead MPEG Encoder
2007-09-13 12:51:23.765    VERBOSE    [5]    Graph Recorder: Change Graph: looking at filter: WinFast TV2000 XP Expert WDM Video Capture.
2007-09-13 12:51:23.765    VERBOSE    [5]    Graph Recorder: Change Graph: looking at filter: Realtek HD Audio Input 0001
2007-09-13 12:51:23.765    VERBOSE    [5]    Graph Recorder: Change Graph: looking at filter: WinFast TV2000 XP Expert WDM Crossbar.
2007-09-13 12:51:23.765    VERBOSE    [5]    Graph Recorder: Change Graph: looking at filter: WinFast TV2000 XP Expert WDM TV Audio.
2007-09-13 12:51:23.765    VERBOSE    [5]    Graph Recorder: Change Graph: looking at filter: WinFast TV2000 XP Expert WDM TVTuner.
2007-09-13 12:51:24.281    VERBOSE    [5]    *******  Graph Recorder: Setting video type = SECAM_B

I think that's the point. CV, perhaps a laxer comparison (contains instead of equals) can help here?

Using two capture sources (one for SECAM and one for PAL) with the same device ID didn't fix the issue with freezing LiveTV. I really think that this is a synchronisation issue, as both sources are using the same graph and hence the same resources ... It's not a big thing for me, because PAL channels will be received with a PVR-500 in future, but I'm trying to give as much feedback as possible. Additionally, using two capture sources setup didn't let GBPVR selecting the right capture source for recording. I scheduled two recordings, the first on a SECAM channel, the second on a PAL channel. GBPVR recorded both programmes using the SECAM source, because it is the first one in the list and the database states, that the source with this ID can record the requested channel (but tuning it with the wrong video format in that case). See the attached schreenshot anf the recorder log. I will do some more tests using a second set of graphs again and report.

And last but not least, setting the capture size directly in the graph works perfect here. I didn't knew that there are also PIN properties ... Thanks for this advice.

MediaDept
carpeVideo
Offline

Posting Freak

Posts: 824
Threads: 23
Joined: Dec 2006
#133
2007-09-13, 09:52 PM
MD - did using two capture sources work for the video? That should close and reload the graphs.

Also on forcing the audio it should still work even with the enumeration issue - for muting it uses the mixer name but for forcing audio it looks at whatever audio mixer is in the graph then looks for the pin name selected. The issue would be if the pin name is different in directShow versus the mixer code.


The attached has more audio logging but no fixes.

CV
MediaDept
Offline

Junior Member

Posts: 22
Threads: 4
Joined: Sep 2007
#134
2007-09-17, 10:00 AM
Hi CV,

carpeVideo Wrote:MD - did using two capture sources work for the video? That should close and reload the graphs.

I'm still testing different combinations of 2 catpure sources vs. 2 set of graphs and back-to-back recordings vs. recordings with some idle time in between.

carpeVideo Wrote:Also on forcing the audio it should still work even with the enumeration issue - for muting it uses the mixer name but for forcing audio it looks at whatever audio mixer is in the graph then looks for the pin name selected. The issue would be if the pin name is different in directShow versus the mixer code.


The attached has more audio logging but no fixes.

I made a test recording with your attached version of graphrecorder.dll (see attached recorder log). Muting/unmuting in preview works fine, but setting the right recording source doesn't.

Thanks for your help with this

MediaDept
carpeVideo
Offline

Posting Freak

Posts: 824
Threads: 23
Joined: Dec 2006
#135
2007-09-17, 02:38 PM
Media - you forgot to attach the log with your latest post,
also did you set the attributes of your audio filter in the graph (try the filter and the capture pin) to ensure the right source is being patched through?

CV
VORTECH
Offline

Junior Member

Posts: 17
Threads: 4
Joined: Jan 2006
#136
2007-09-28, 04:00 AM (This post was last modified: 2007-09-28, 04:02 AM by VORTECH.)
carpeVideo,

First thanks for making this plug-in, I'm hoping I can get my old ATI TV Wonder VE working with GBPVR 1.0.16.

While I'm a complete newbie to graphedit, I did manage to make a working .grf that seemed to create a working .mpg file that had both sound and video when I played it back in media player classic.

Question is now what? I've installed GBPVR 1.0.16 and v 1.5 of your plugin, imported my epg info, but there's alot of settings in the "graph recorder configuration" menu that I don't understand. I apologize if this is documented somewhere else, I'll gladly go read up if there is....

Could anyone help me with the rest of the configuration? I've attached my working graph at the bottom.

Thanks in advance!
carpeVideo
Offline

Posting Freak

Posts: 824
Threads: 23
Joined: Dec 2006
#137
2007-09-28, 02:32 PM (This post was last modified: 2007-09-28, 04:29 PM by carpeVideo.)
Vortech -

One thing about graph files is that they can not be opened unless you have the same hardware in the machine as the person who made the graph - so I can't open yours. You'll need to post a screen shot.

That said, if your graph creates a file and you are using GBPVR writer filter as the last filter it should be fine for at least time shifted tv and recording.

For your card set up the settings are pretty straight forward. (it get's more complex capturing s-video or composite with audio from a different source)

Start with using only the first graph tab - set all the graphs to your graph except for the preview graphs. Then set try to tune via graph. You probably don't have to force video or audio.

That is it - if you want to do live preview/TV create a graph that renders directly and save that and point to it for live preview mode. Assuming you are using the cards tuner all the audio stuff is not necessary.

Once that is working you can muck with different graphs with different quality settings if you'd like.

CV
VORTECH
Offline

Junior Member

Posts: 17
Threads: 4
Joined: Jan 2006
#138
2007-09-28, 03:32 PM
Thanks Much, sorry I didn't even think about the screenshot method.......

Will make the changes you recommended and attach a screenshot of my new graph when I get home.

Thanks again!
VORTECH
Offline

Junior Member

Posts: 17
Threads: 4
Joined: Jan 2006
#139
2007-09-28, 10:05 PM (This post was last modified: 2007-09-28, 10:06 PM by VORTECH.)
Looks like I might be having issue with signal strength on my cable TV run down to the basement (too many splitters) but while I sort that out, here's my graph.
carpeVideo
Offline

Posting Freak

Posts: 824
Threads: 23
Joined: Dec 2006
#140
2007-09-29, 12:07 AM
From what I can tell things look fine - you may want to set the audio mixer to the realTek and have it select the line in volume for non-preview audio, although I am not sure it's necessary.

Otherwise if its creating an mpg file for you that works then what I said in the previous post should get you going.

To get preview working - disconnect the capture devices , click on the audio video output pins and have graphedit render it - play the graph it - if it works then save that graph and use it for preview.

CV
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (35): « Previous 1 … 12 13 14 15 16 … 35 Next »
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  BBC Iplayer Downloader Plugin - Beta + Support smiler 420 159,493 2012-01-20, 12:15 PM
Last Post: martint123
  software recorder, any plugin like it for npvr? chesterusob 2 14,787 2011-04-11, 07:28 AM
Last Post: chesterusob
  Newbie needs help with renaming external plugins and making some plugins to work Chris79 2 2,373 2009-06-14, 05:36 AM
Last Post: Chris79
  GraphRecorder External via Executables Tab Ignored observer_11 0 1,689 2009-05-02, 09:44 PM
Last Post: observer_11
  Graph/ External Recorder - Ability to record to TS stream Dancasper 19 8,738 2009-04-28, 03:45 AM
Last Post: Dancasper
  ExternalDisplay - Beta Testers Wanted ralphy 124 43,552 2009-02-27, 02:11 PM
Last Post: feilh
  DBox Recorder Plugin Trouble junkiepilot 2 2,286 2008-12-06, 09:04 AM
Last Post: alibert
  Web Radio graph problem ACTCMS 7 3,712 2008-10-05, 12:50 AM
Last Post: ACTCMS
  Problem xternal Recorder Plugin and GraphRecorder Captain-DJ 6 3,620 2008-09-14, 06:12 PM
Last Post: Captain-DJ
  Anime Watchers, Take Two - Looking for Beta Testers Ommina 17 5,990 2008-01-25, 07:16 PM
Last Post: Ted the Penguin

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

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

Linear Mode
Threaded Mode