Library that can extract and play video file - java

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 :)

Related

How to play an .mp3 file reversely in java

I want to develop an android application in which the user can play an .mp3 song file reversely ( playing backwards).
I have searched a lot on the web and the stackoverflow, but I haven't found anything useful and basically I'm short on the main idea behind this scenario.
So I'd like to know if there are any java libraries for manipulating .mp3 files or sample applications. Any insight is appreciated :)
A possible solution is to convert it to WAV (on the fly) and then play it using the following answer:
Play WAV file backward

Running ffplay video within a jframe

I wish to play a video in JFrame. I am already using ffmpeg in my project. As I wish to keep the project light, I am not willing to use other frameworks like JMF or other. I know that I can play video using ffplay. But the problem here is ffplay opens the video in new window when I try
ffplay output.avi
I wish to put that video within my JFrame, like a player. How can I do this?
Request:
Please ask for any other clarifications, details, and suggest improvements or comment what you find wrong before downvoting or voting to close the question:). I will change it. I am really new to Java, I tried searching this but could not find any possible solution.
What I tried? I couln't find anything related to this, so I don't have any code. I am familiar to how to create frames, and can use runtime to ffplay video. But I got no clue how to put that video within my window:(.
All suggestions are welcome if you can suggest me other methods to play the video. But I haven't use any frameworks other than ffmpeg. And do not wish to make the application heavier. So it would be more helpful if it can be achieved using ffplay.
Look at the JMF 2.1.1 - Supported Formats. If the video types you wish to support are covered by the cross-platform1 version of the JMF, or you can find an SPI for the format, I'd say use JMF.
The 'performance pack' version uses natives which are now very old. I would not recommend trying to use them.

Using JMF with jffMPEG

I`m programing in Java with Eclipse. On my project i use JMF in my java application. I need to play mp4 files so i am trying to add jffMPEG to use with JMF but meanwhile with no success. I followed this tutorial.
But on second step, register the following "Demultiplexers" i get
"JMF Registry Error - Could not add item".
Can anyoune please help me playing MP4 in jPanel or refer me to good tutorial how to use jffMPEG in java.

FLAC or OGG Online Media player

Is there a way to make an audio/video player in Java that can play on a website?
I searched around but I don't understand enough yet for this.
We are going to setup a server that can stream OGG and FLAC audio files. We need a player that can play them on a webpage.
Our backend is built with Java. Before we put together a project for a Java programmer I want to know what the possibilities are.
Can this be done with an applet and simply add the right codecs and place it on the webpage?
Yes, we made js flac player. This is code of js codec: https://github.com/audiocogs/flac.js
This framework https://github.com/audiocogs/aurora.js for made player
You just to embed the HTML for a player, then add your own script to play the audio/video.
Here's how to Embed the code for WMP:
http://www.mioplanet.com/rsc/embed_mediaplayer.htm
Sorry, I don't know what files it can play but just give it a shot...
Found jPlayer. HTML5 with flash fallback.

Converting audio files(.3gp) to video with Album cover and uploading to YouTube

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.

Categories