PDA

View Full Version : help, dgbob use in a .net appliation.


gcornellier
22nd March 2007, 01:58
I am working on a project where I want to capture video using a Microsoft.net application and play it back using a dgbob filter. I am using a firewire connection to a DV camera so the input is comming interlaced so I need to deinterlace it and I need to play all the fields so I can review all the movement in a sports like movement. I have tried this in AVIsynth and it works but I want to have the process in the applicataion. Can someone on this forum point me in a direction or have a suggestion on how one may accomplish this task.

Thanks in advance.

Greg

unmei
25th March 2007, 22:12
I guess what you want to do is use avisynth as frame server, eg call functions of avisynth.dll to read frames (?) I don't know where the DLL API is documented, but this thread (http://forum.doom9.org/archive/index.php/t-32007.html) should give some usage hints. If you are reading from a file all should be good, but if you want live input from the camera, you might need to write a avisynth source filter that pulls data from the camera and provides it to avisynth as well. Another approach would be an avisynth "emulator" - eg your app calls functions of the filter you want directly, but then you have to implement all the structures/functions that filter uses of avisynth (no idea if this can be done, i guess it should be possible but maybe a lot more work :)

Oh, and welcome to the forum