On Tue Nov 15 21:09:09 2022 +0000, Nikolay Sivov wrote:
Regardless of legal issues, or importing the code or not, is there a way to test this? With some publicly available media and some kind of test media player program.
There are some public available videos, e.g. `https://samples.mplayerhq.hu/V-codecs/IV50/haegemonia.avi%60. A simple test program can be used to play the media:
```c #include <stdio.h> #include <windows.h> #include <mmsystem.h> #include <mmreg.h>
int main() { MCIERROR error; if (error = mciSendStringA("open test.avi alias vid", NULL, 0, NULL)) return error; if (error = mciSendStringA("play vid wait", NULL, 0, NULL)) return error; return 0; } ```