I'm looking for a Library that supports editing videos and images using some sort of instagram filters.
I will be using it to save data also (not only at runtime)
Lately I have been reading about the ffmpeg library.
Is there any other effective library to do so?
Thank you :)
if you want instagram filters tutorial then have a look at this link
Instagram Image Filters
Now i dont know any such alternative of ffmpeg if you know c++ then make your own native library according to your needs
these are some other github projects and libraries you can use to save your time
Photo Editor
iQuePhoto
these are some video editing libs/projects
Video Editor
FFMPEG Video Editor
Related
I want to add a png image while recording video using camera api, the image must acts as a watermark on the video while video is saved.
One approach which I can suggest is use ffmpeg for android (check this). You will need to compile the library yourself, if you want the latest version. Readily available ffmpeg for android is this.
After implementing the ffmpeg, refer this question for adding watermark.
Hope this helps.
I will build a simple program that
Can play video file (.mp4) in my program.
Can extract the video, so that I can get the title, length, subtitle, and the audio, etc.
What is the library in Java that I should use?
I have googled, but I still can not find the best library. By the way, I have tried to download xuggler, but I can not find any file.exe that can install this library.
Please be kind because I never make a code regarding video player and video extractor.
For playing audio and video in your java program use Java Media Framework. It contains jar files that will provide you classes to play and handle audio and video files.
Use this tutorial for understanding of JMF.
I have successed to use xuggler in java. Xuggler website is suck because they don't keep good installer in their website. Every beginner who use xuggler must be have some trouble like me.
For every one who want to use Xuggler, you can follow this website
http://www.benfarahmand.com/2012/11/tutorial-using-xuggler-in-processing.html
the link to download file.exe xuggler is here: https://www.dropbox.com/s/oh7zcyilibzfoyb/xuggle-xuggler.5.1.0-win64-setup.exe
Thank you :)
I want to create GIF from the existing Video. I have search for related question but I did not find any link which can help me. I was looking for any library or API that can help me to either create bitmaps from the video then again I will create GIF from that bitmap or directly create GIF from the video.
Is there any lib or API to capture sequence of bitmaps from the video?
please give me any link for the library or API that can help me to do this.
Take look on JMF (Java Media Framework). It will take you some time to learn basics. Then you will able to do this. I do not have a code sample with me now but as far as I remember you have to create player, then retrieve from it appropriate "control" that provides you access to frames.
Here is an example for start: http://khemsoi.blogspot.com/2006/03/jmf-frame-grabber.html
Due to lack of work & knowledge, I dont know the APIs by using which I can build Images gallery.
Please suggest the Servlet/JSP APIs to display Images Gallery like Facebook / Orkut.
Generally image galleries are done using JavaScript not using Java. Your Servlet/JSP api will provide links to your images and a JavaScript will be used to show them as gallery. Here is a ton of jQuery plugins(There are more for other libraries and some with out using any libraries) online.
In that case you shouldn't code it yourself :). Here you have an open source project called TriArctic which does just that :)
I have an audio file in .3gp format on my Android device which I wish
to upload to YouTube. I know that YouTube is a video upload site and
that I need to convert this sound file to video.
I just want an image to display all the time the audio is playing.
Google tells me there are number of tools that can help me. But I want
to do this via java code from my Android device.
Please help.
Thanks.
There are tools such as FFMPEG available for free that allow you to, essentially, mix and convert heterogenous streams. That is you can add a bitmap to a video, create video from slide shows and then add sound etc. (See a related question I asked here).
These programs can be executed from within java applications by making Runtime.exec(..) calls.
Sun has an example for stitching multiple JPEGs together into a movie, you can find it here. You should be able to take this example, (its fairly robust), and add what you need to it.
I recommend looking into the Java Media Framework (FAQ)
You can find a vast collection of sample applets/code at the Sun Solutions page. You can find the API on this page. I do hope this is compatible on the Android platform, as I haven't had any personal experience developing for it. But it might be a good place to start.