-
Notifications
You must be signed in to change notification settings - Fork 7
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
Video: Support rendering out a single frame, as JPEG/PNG #109
Comments
Sounds like slightly overlapping functionality with https://github.com/the-grid/iconographer ? |
Another interesting thing would be to request a set of frames and get an animated gif containing those, kind of like how Google+ does video previews |
GIFs should generally die... For that usecase, extract frames as JPEG and it play forward with JS. Or could output as mp4/webm, with a very low framerate. Problem is, you want to be able to control the timing in the UI, and not have to re-render everything if you change your mind about it. |
@bergie this does zero smarts, just obeys client request. iconographer is for the smarts. |
Fair point. So then implementing this feature (extracting given frame as jpeg) would already do the trick |
Yes, assuming the client knows how many frames long the video is :) |
Should seek to a specified frame. Probably might want to make that
video_start_frame
input. And probably should work when outputting video also. At which point probably should also addvideo_end_frame
for completeness...The text was updated successfully, but these errors were encountered: