I used grafika project for making video recording app. Now i want to add watermark to the video.(I have filepath for video). Please Someone help with any code snippet or suggestion. And yeah i don't want to use ffmpeg like heavy library unless no other solution is left.
Such Similar question exist but didn't find any solution.
Here a solution is posted but it's not clear exactly how to proceed:
https://stackoverflow.com/a/43231245/7026525 Any help is appreciated.
Related
I need to put an png to my application, magnify, minimize and moving it, as in this picture , I don't know if there was a limit or not, I don't know how!
Help please :)
Here's the official photoviewer demo from IO last year to get you started. Or if you'd rather work with an external library check out PhotoView. I believe they both have the functionality you are looking for.
Well, after two weeks of searching for this, I give up.
I've searched everywhere for a Java/android library to put together images and make a simple video. No luck.
I found jcodec, a promising library, but I just couldn't make it compile on eclipse. The android example given by them is throwing me errors.
Has anyone in the world accomplished this task? Is it even possible? I'm willing to pay if someone's got it.
Thank you guys in advance.
José-
What are you trying to do and what are you looking for? Have you looked into FFMPEG for Android? I'm currently looking into this myself, but take a look at this:
FFmpeg on Android
I want to develop a Camera 2 kind of application. So i just wanted to know how to apply live effects to android Camera .Is there any android library for that? plz help me to solve the issue.
thanks in advance....
What have you tried? I assume by live effects you mean shown on the preview.
You can try what the answer here suggested, but any sort of complicated filter implemented in java is going to slow things down. For good performance you'll probably have to write some native code to process the previews. The good news is, if you're writing NDK code you can make use of libraries like OpenCV to do the filtering for you.
I am realizing my own media player am using ffmpeg for decoding and libjnigraphics(Bitmap,SurfaceView,...) for rendering.
I got it working now i want to get an attractive UI i want to display play/pause/stop/next buttons in the bottom of my screen with circular buttons etc like in the actual video players available in the market and in the following picture
How a similar UI is realized in android ?
I searched a lot over the net but i didn't find anything interesting
I would be thankfull if someone gives me tips about making similar UI
If I understand what you're trying to do you should take a look at this answer here:
Android: How to create video player?
by Commonsware and also to his sample application Vidtry.
Hope this helps. :)
I'm trying to do an Android app that can stream video (live) from the device camera to another device. How can I do this? Anyone can give me tips or some kind of tutorial / code ? I really need some help because I don't know how can I solve this. I read a lot about this, i've tried some examples but until now without success.
thanks
There has already been talk done about this over here. Hope it helps:
Streaming video from Android camera to server
Edit: http://code.google.com/p/ipcamera-for-android/ <= here is a project that does what you want to do, you just need to adapt it to your needs :)