Hacker News new | ask | show | jobs
by shashashasha 4576 days ago
Thanks! We currently do support Vine and Instagram video, and you can pick a short clip from there. Processing all videos in all formats is a little tricky right now and it's helpful to have the pre-constraint of those social networks. Taking video from a phone is a great idea though!
3 comments

It's pretty easy to extract all the image data from ANY video source using FFMPEG. If the command line version doesn't fit into your workflow, there's always libavcodec (what FFMPEG is based on). Give me a shout if you're interested in supporting any and all video formats.
Pretty sure you can do that in Photoshop and/or specialty apps. See "Cinemagraphs/Cinemagrams".

For example: http://www.reddit.com/r/Cinemagraphs/

Expanding on what doctorwho said:

    ffmpeg -i input.whatever frame-%04d.png
Explode virtually any video format into frames, assuming that you've configured ffmpeg generously at compile time.
Totally! We just need to do more work on our end to make sure we don't end up accidentally accepting multi-gig video files. Vine and Instagram is a convenient way to start because it's much more constrained :)

    client_max_body_size 50M;
Haha awesome. We need to step up our game! We're primarily frontend designer/developers and this is our first node.js project :)