-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Saving an opencv stream #953
Comments
I've managed to write a solution:
|
a little bit more beefy version:
It's more effective, because you can write your clips on fly without excess memory usage. Yes, with sound too. And with possibility to get data from pyaudio microphone stream without too much headache. |
I also have same demand for this feature of writing frame on a stream like cv2.VideoWriter. Is there any code for this feature? Are the code of arsserpentarium merged to master branch? |
So I have an RTSP stream and I'd like to save it using moviepy (for codec issues with opencv). Opencv syntax is super easy:
I'd like to do the same thing with moviepy. On the internet I've seen a lot of examples doing something like this:
But this means that I have to have a video to start with.
So the actual problem is that I want to save an array of images which is dynamically build and I don't want to save each image on the disk and then import all the images on moviepy. Is this possible?
Specifications
The text was updated successfully, but these errors were encountered: