I want to create android application with video filters like in snapchat. The problem is that i can't find library like SCRecorder in IOS, I already added FFmpeg in application but even with ffmpeg i can't applying filters over the image or videos.
Do you have any library or idea/code to solve this problem ?
Below is screenshot from snapchat
Asked
Active
Viewed 1,478 times
2

Ara Badalyan
- 1,616
- 1
- 15
- 20
-
What is wrong with this question that some people put minuses ? – Ara Badalyan Jan 26 '16 at 15:25
-
Have you implemented above feature? Have you found any library or any piece of code? – Umang Kothari Jul 15 '16 at 10:46
-
@AraBadalyan, Have you found any solution? – Maddy May 15 '17 at 08:14
1 Answers
2
You can use opengl es for filter. By using different shader code you can implement different filter. Here is useful link https://www.virag.si/2014/03/rendering-video-with-opengl-on-android/

Gulshan Mishra
- 106
- 1
- 11
-
Thanks for answer. But the problem is that i want add filter dynamically. For example add filter when user click the button. – Ara Badalyan Jan 29 '16 at 06:46
-
you can change filter by changing shader program dynamically i have implemented dynamically. – Gulshan Mishra Jan 29 '16 at 07:17