Is it possible to use JMF in Android? JMF has good functionality?
I'm basically trying to create a video in my android app. So any other ideas for creating the video are welcome.
Thank you.
JMF will not work in Android.use MediaPlayer API instead.
Media and Camera
Xuggler doesn't work on android...
You should compile and use FFMEP, like in this tutorial :
FFMEP tutorial
Related
I saw this tutorial http://ffmpegandroid.blogspot.co.il/2014/06/below-blog-will-explain-steps-to-setup.html
I compiled and get .so files. Now I want to play mms video on the screen.
How can I do this?
Thanks
I wanted to play mms.
IJKPLAYER solved my problem (android,IOS)
https://github.com/Bilibili/ijkplayer
this lib use ffmpeg,so it supports not only mms but also all the formats that ffmpeg supports.
I'm wanting to build an Android widget for my phone that streams a video from a link on button click. I've searched tutorials on Google but I'm still having difficulty understanding how I'd achieve this.
Does anybody have an example of something similar to this or know of any good tutorials to get me started?
Cheers
You can use android native VideoView. It can even play online streaming videos.
I am trying to stream a video in app using the native player for android. But when trying to stream a link with "rtmpe://" it doesn't work. Can anyone guide me on how to play this? So far I have only seen solutions of iOS. I want to play this without using external Apps.
Check supported media formats for Android here. Not all protocols work on android.
I need to read a qr code using Java using the notebook camera. I found examples on how to do it in Android but nothing in desktop. Is Zxing the best library to do it? Anyone know a good tutorial about it? Many thanks.
to grab an image from a cam you can use JMF ( Java Media Framework) ( bit outdated )
or this project https://github.com/sarxos/webcam-capture
Zxing is a good choice to read the barcode from the image
Complete example can be found herer https://github.com/sarxos/webcam-capture/tree/master/webcam-capture-examples/webcam-capture-qrcode
Not sure if about your java-ee-7 tag. Should the app running on a application server ?
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 :)