Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. markymsofth

    Multicast MPEG2-TS to WMV in Realtime

    WMAsfWriter (which actually seems to need a file to write into?)." you can do the asfwriter without writing to a file which will obviously improve your performance. i cant remember the details. i remember reading a post on the www.progdigy.com site for dspack on the delphi side, i think after...
  2. markymsofth

    Borland continues its support of C++

    latest video showing how bcb is getting along http://bdntv.borland.com/cppbuilder/DelphiBCB_DB.html
  3. markymsofth

    Compiler Warning question

    just a mention about pre compiled headers. borland have stated that using them with bcb6 can increase compile times by up to a third. ie bug. and suggests you clear them out of your bin folder.
  4. markymsofth

    Borland continues its support of C++

    survey for what you want to happen in the next version of builder for borland. http://infopoll.net/live/surveys/s27345.htm in the part where they if you could fix just one thing. why not ask for more compatibility with delphi. that way whenever you try a delphi component itll have more chance...
  5. markymsofth

    playing a file using directshow

    www.progdigy.com dspack dx9c multimedia capture playback component. examples and huge following.
  6. markymsofth

    trouble viewing webcam with graphedit

    normally if your right click on the video source or its output pin you can set its resolution and format. its likely that it has a default format that your graphics card dosent like and you just need to set it. u often have to set it before linking capture source to anything else
  7. markymsofth

    image printing article

    thanks for reply if your printer driver supports stretchdraw u can use the following to print out. i only have a b/w laser set at 600 dpi so im guessing it will probably work for color. TRect TheRect; TheRect= Rect(0,0,2560,1920); TPrinter *Prntr = Printer(); Prntr->BeginDoc()...
  8. markymsofth

    Borland continues its support of C++

    http://bdntv.borland.com/cppbuilder/CPPinDelphi.html this is the preview of the next version supporting c++ builder
  9. markymsofth

    Convert bitmap to grayscale

    so keeping explanation simple im guessing your fading into greyscale as i dont use xp so therefore dont know what your on about grayscale r= r+g+b/3 g= r+g+b/3 b= r+g+b/3 repeat until r=g=b if (r>g) {r--;g++;} if (b>g) {b--;g++;} if (r<g) {r++;g--;} if (b<g) {b++;g--;} obviously r g b are...
  10. markymsofth

    image printing article

    any help making this work with bcb6 taken from here http://bdn.borland.com/article/0,1410,22018,00.html void __fastcall Tmain_form::print_image_btnClick(TObject *Sender) { TPrinter *p = Printer(); // create a memory dc for the image HDC h_dc =...
  11. markymsofth

    3D DirectSound, volume of the sound

    i think the sound volume is logarithmic, maybe your trying to set it as if its linear
  12. markymsofth

    add infinate tee to a avi decompressor

    thanks for responding ,i thought it was clear what i wanted but obviously not. and can see ive miss spelled the ( int /infinate) what connects automatically is filter->avi decompressor->video window. i want to stick an infinate pin tee filter after the avi decompressor. yes its all easy to...
  13. markymsofth

    add infinate tee to a avi decompressor

    filter -> avi decompressor -> vid window want filter -> avi decompressor -> int pin tee filter >vid window
  14. markymsofth

    display realtime audio

    think that theres a directx filter on the dspack website just waiting for you to download.(which will specify all of your requirments)
  15. markymsofth

    How to execute an exec file from my Builder c++ program

    may not be the most flexible but ShellExecute(NULL,"open","prog.exe","","",SW_SHOWDEFAULT); is so easy peasy
  16. markymsofth

    MS MPEG2 Demux

    http://paul.glagla.free.fr/d4.htm unfortunately this is in french, im told you can bable fish it, its in the area your after. and to make things worse it delphi, easy to translate though and it does show the graphs which you can definately follow.
  17. markymsofth

    Live video overlay and keycolor

    using direct x you can specify the handle of where you want to display to. things that have handles forms buttons desktop so you can stick video into another app if you wanted for real
  18. markymsofth

    Video Capture to disk

    you could do it with dspack a component for bcb6 or delphi. theres some examples similar to what you are after at their website.
  19. markymsofth

    DirectShow render

    you could always try and get the app to look for a version of itself on startup and if it exists rename itself.
  20. markymsofth

    To encode with h.263 codec

    i have a reencoder written using dspack which registers all filters for viewing with graphedit. i could mail it u.

Part and Inventory Search

Back
Top