Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ofTheo/ofDirectShowVideoPlayer
ofDirectShowVideoPlayer contains DirectShowVideo a C++ class that allows for video playback and pixel access and ofDirectShowVideoPlayer, an openFrameworks wrapper.
https://github.com/ofTheo/ofDirectShowVideoPlayer
Last synced: 7 days ago
JSON representation
ofDirectShowVideoPlayer contains DirectShowVideo a C++ class that allows for video playback and pixel access and ofDirectShowVideoPlayer, an openFrameworks wrapper.
- Host: GitHub
- URL: https://github.com/ofTheo/ofDirectShowVideoPlayer
- Owner: ofTheo
- Created: 2014-01-04T21:34:24.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-01-04T23:47:01.000Z (almost 11 years ago)
- Last Synced: 2024-11-01T21:21:55.585Z (12 days ago)
- Homepage:
- Size: 145 KB
- Stars: 31
- Watchers: 5
- Forks: 11
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
ofDirectShowVideoPlayer
=======================ofDirectShowVideoPlayer contains DirectShowVideo a C++ class that allows for video playback and pixel access and ofDirectShowVideoPlayer an openFrameworks wrapper.
Video plackback is not currently callback based, but it will be updated shortly for a callback based capture approach.
This implementation, implements all the ofBaseVideoPlayer virtual functions.To allow for QuickTime video playback with this player install the K-Lite Mega Codec Pack 10.2
This code is free to be used in any manner with or without attribution.
No warrenty is offered or implied.
To try out:
* Make sure you have OF v0.8.0 or higher
* Download the files and add to your project
* Duplicate the moviePlayerExample and add the following lines to testApp::setup```
dPlayer = new ofDirectShowPlayer();
ofPtr ptr(dPlayer);
fingerMovie.setPlayer(ptr);
```Credits:
Code is based off of examples provided by MSDN, the videoInput library, http://www.codeproject.com/Articles/30450/A-simple-console-DirectShow-player and http://www.geekpage.jp/en/programming/directshow/