Josh Beckwith

Results 73 comments of Josh Beckwith

You could implement the MediaRecorder API to save video from the canvas. https://developers.google.com/web/updates/2016/01/mediarecorder

I did this on Temporalis: https://github.com/positlabs/temporalis/blob/gh-pages/Recorder.js

> We probably won’t add an option for this @j-f1 What's the reasoning behind not supporting the single-line format for imports?

+1 I'm just starting to explore the PNaCL video encoder, but it's crazy fast so far. I recommend we create a separate, dedicated repository for PNaCL encoder, then integrating into...

@Hum4n01d, seems like it depends on the release of Pug 2.0. It's still in beta.

I am working on this for my own purposes. I'm sure my code could be ported over easily, but I'm getting hung up on the last step. ``` const reqActiveOpts...

Reading is hard sometimes. I figured it out. Here is what I ended up with. Could add an option for setting active state. ``` const uploadPoster = async (imageURL, thumbURI)...

I'm in the process of building a docker container to run fast-artistic-videos. The approach I'm taking is to use the flownet2 image as the base in my container definition. That...

I fixed this by upgrading protobuf ``` RUN curl "https://bootstrap.pypa.io/get-pip.py" -o "get-pip.py" && \ python get-pip.py && \ pip install --upgrade protobuf --ignore-installed six && \ rm get-pip.py ```

@bafonso you're right about the CPU bottleneck. It was caused by the run-flownet-many.py script NOT reusing the network, but recreating it for each frame. I have modified the script to...