Media_Dev
-
The Evolution of DirectShowMedia_Dev 2008. 11. 4. 11:47
The first support in Microsoft Windows for video capture was provided through Video for Windows (VfW) for Windows 3.1. VfW was pretty good for its time, but it had certain limitations. Chief among these was the fact that the Video Compression Manager (VCM) was not designed to handle codecs that put video frames into a different order during the compression process. This meant that it would be di..
-
setting several direct Show& directx 9/x in vs2008Media_Dev 2008. 10. 14. 09:53
C:\Program Files\Microsoft DirectX SDK (August 2007)\Lib\x86 C:\Program Files\Microsoft SDKs\Windows\v6.0\Lib C:\Program Files\Microsoft SDKs\Windows\v6.0\Samples\Multimedia\DirectShow\BaseClasses compiling project and moving libs nasm.exe download and moving to C:\Program Files\Microsoft Visual Studio 9.0\VC\bin. http://www.cs.uaf.edu/2008/fall/cs301/nasm_vcpp/ Help: Cannot open include file: '..
-
GraphEditor 가 이상한 소리를 하지 않는가 ?Media_Dev 2008. 9. 22. 14:19
이상한 코덱을 지우려다가. 레지스트리를 무작정 지웠다.. 그후.. 더이상 개발을 할 수 없게 된나.. 젠장.. 일단 아래와 같이 실행하고.. Direct x 는 플랫폼 sdk 를 다시 설치 해야 하는지... 다음 레지스트리가 빠져있거나 손상된 경우 이런 문제가 발생할 수 있습니다. HKEY_CLASSES_ROOT\CLSID\{DA4E3DA0-D07D-11d0-BD50-00A0C911CE86}\Instance\{083863F1-70DE-11d0-BD40-00A0C911CE86} 이 키에 대한 값 이름과 값 데이터 정보는 다음과 같아야 합니다. CLSID={083863F1-70DE-11d0-BD40-00A0C911CE86} FriendlyName=DirectShow Filters Merit (DWORD va..
-
BITMAPINFOMedia_Dev 2008. 6. 10. 12:16
typedef struct tagBITMAPFILEHEADER { WORD bfType; DWORD bfSize; WORD bfReserved1; WORD bfReserved2; DWORD bfOffBits; } BITMAPFILEHEADER, FAR *LPBITMAPFILEHEADER, *PBITMAPFILEHEADER; typedef struct tagBITMAPINFO { BITMAPINFOHEADER bmiHeader; RGBQUAD bmiColors[1]; } BITMAPINFO, *PBITMAPINFO; ///////////////////////////////////////////////////////////////////// static BITMAPINFO *pbmi = (BITMAPINFO..
-
코덱종류Media_Dev 2008. 4. 7. 17:17
http://comefeel.com/tt/comefeel/category/Application_developing DivX 사이트 Windows용 Version 3.20 Linux용 Version BeOS용 Version Mac용 Version Unified Codecs Pack V3 동영상 재생을 위한 코덱 모음 "Unified Codecs Pack" 통합코덱 다운로드(kscodecsv433.rar) | WinRAR 2.8 (rar 압축풀기) | WinRAR 2.8 정식패치 Coder & decoder OpenDivX V4.0 Alpha 48 (Project Mayo). Coder & decoder DivX V3.2 (3.11Alpha + Scene detect patch) Coder & decoder..
-
FilterInfor()Media_Dev 2008. 3. 26. 18:15
This can show the list of connected filter by Graph Manager in DirectShow. void TraceFilterInfo() { IEnumFilters *pIEnumFilters = NULL; HRESULT hRes = S_OK; hRes = m_pGraph->EnumFilters(&pIEnumFilters); IBaseFilter *pIBaseFilter_Enum = NULL; CLSID clsid; FILTER_INFO filter_info; ULONG ulHowManyPins = 0; while (hRes ==S_OK) { hRes = pIEnumFilters->Next(1, &pIBaseFilter_Enum, 0); pIBaseFilter_Enum..