Stephan Schulz

Results 138 comments of Stephan Schulz

I think this has to do with the selected video codec. Is there a way to set which codec get's used? Right now it seems to be `args.push_back("-vcodec rawvideo");` or...

works now. I had to add `args.push_back("-pix_fmt yuv420p");` ``` std::vector args; std::copy(m_AdditionalInputArguments.begin(), m_AdditionalInputArguments.end(), std::back_inserter(args)); //args.push_back("-pix_fmts"); args.push_back("-y"); args.push_back("-an"); args.push_back("-r " + std::to_string(m_Fps)); args.push_back("-framerate " + std::to_string(m_Fps)); args.push_back("-s " + std::to_string(static_cast(m_VideoSize.x)) +...

Thanks for those tips. I will certainly give it a try and keep everyone updated here.

If I switch to 'legacy build system" then it works again. ![Screen Shot 2022-05-31 at 9 07 52 AM](https://user-images.githubusercontent.com/1054816/171180692-5b828828-6661-48b9-a385-e33ac5d1cd35.jpg)

@dimitre thanks for testing this. Might be something specific to my older macOS and older Xcode. I am hesitant to upgrade my development machine at this point in order to...

@bangnoise do you know when this feature will be available? thanks for this great add-on

by any luck, did you find a way to make getCurrentFrame() work? thx

sorry for my noob question. could you give a short example please, on how to do the new/delete. The below still cause **Call to deleted constructor of 'ofxHapPlayer'** error. ```...

oh got it. ``` ofxHapPlayer* videos; videos = new ofxHapPlayer[maxVideos]; ```

Xcode 11.3.1 macOS 10.15.? it a remote machine so that I can only VNC to. I downloaded the addon from GitHub as .zip file