avclj icon indicating copy to clipboard operation
avclj copied to clipboard

libavcodec pathways for Clojure.

Results 2 avclj issues
Sort by recently updated
recently updated
newest added

Here is the command line I am currently using to do png seqence -> mp4 conversion: `ffmpeg -framerate 60 -i ./out-%03d.png -r 60 -c:v libx264 -pix_fmt yuv420p out.mp4` Note, this...

I wrote some demos that display videos using [skia](https://github.com/phronmophobic/clj-media/blob/main/src/com/phronemophobic/clj_media/skia.clj), [swing](https://github.com/phronmophobic/clj-media/blob/main/src/com/phronemophobic/clj_media/java2d.clj), and [cljfx](https://github.com/phronmophobic/clj-media/blob/main/src/com/phronemophobic/clj_media/cljfx.clj). The cljfx and swing examples worked great, but for skia, I needed access to the raw frame data...