Abe Pazos
Abe Pazos
Hi hi, What the library currently does to add sound is a two pass encoding. First it makes a video without sound, and then attaches an audio file to that...
Hi! I don't know anything about Processing for Android, sorry. I doubt it would work because it requires installing a command line program (ffmpeg). But who knows, I haven't done...
Let me know how it goes :)
I don't have the time now to research this, but links and info would make it easier for me to implement it :)
By running `ffmpeg -pix_fmts` I see all these pixel formats: ``` Pixel formats: I.... = Supported Input format for conversion .O... = Supported Output format for conversion ..H.. = Hardware...
Here's a list of codecs that seem to support alpha: https://stackoverflow.com/questions/644684/turn-image-sequence-into-video-with-transparency#4372204
Hi! That might work. Have you tried? Do you know how to compile the library? I think if you add the extra byte then `"-pix_fmt", "rgb24"` also needs to be...
Easiest might be to open the project in IntelliJ Idea and then run the ant build script. rgb24 is 3 bytes (R G B) and you would need 4 bytes....
I was reading https://blender.stackexchange.com/questions/2050/any-video-formats-that-render-with-alpha-channel and wondered if the most flexible approach would be to actually export two videos: the current one in RGB and a gray scale one for the...
Hey congratulations for making it work! And thanks for sharing! I may try to merge this. I started (but didn't finish) with the other approach: producing two video files, one...