Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
Filters.cs
Package: capsample_src.zip [view]
Upload User: wuming6209
Upload Date: 2013-06-06
Package Size: 161k
Code Size: 2k
Category:
Video Capture
Development Platform:
Visual C++
- // ------------------------------------------------------------------
- // DirectX.Capture
- //
- // History:
- // 2003-Jan-24 BL - created
- //
- // Copyright (c) 2003 Brian Low
- // ------------------------------------------------------------------
- using System;
- using DShowNET;
- namespace DirectX.Capture
- {
- /// <summary>
- /// Provides collections of devices and compression codecs
- /// installed on the system.
- /// </summary>
- /// <example>
- /// Devices and compression codecs are implemented in DirectShow
- /// as filters, see the <see cref="Filter"/> class for more
- /// information. To list the available video devices:
- /// <code><div style="background-color:whitesmoke;">
- /// Filters filters = new Filters();
- /// foreach ( Filter f in filters.VideoInputDevices )
- /// {
- /// Debug.WriteLine( f.Name );
- /// }
- /// </div></code>
- /// <seealso cref="Filter"/>
- /// </example>
- public class Filters
- {
- // ------------------ Public Properties --------------------
- /// <summary> Collection of available video capture devices. </summary>
- public FilterCollection VideoInputDevices = new FilterCollection( FilterCategory.VideoInputDevice );
- /// <summary> Collection of available audio capture devices. </summary>
- public FilterCollection AudioInputDevices = new FilterCollection( FilterCategory.AudioInputDevice );
- /// <summary> Collection of available video compressors. </summary>
- public FilterCollection VideoCompressors = new FilterCollection( FilterCategory.VideoCompressorCategory );
- /// <summary> Collection of available audio compressors. </summary>
- public FilterCollection AudioCompressors = new FilterCollection( FilterCategory.AudioCompressorCategory );
- }
- }