How i can convert video file to .mov file extension - android

I am developing an android application. In that I have to convert all the video files to '.mov' file extension. Is it possible to do in android app? Please guide me.

You can do this with the FFMPEG
here are some useful references:
http://writingminds.github.io/ffmpeg-android-java/
https://www.labnol.org/internet/useful-ffmpeg-commands/28490/
http://www.hongkiat.com/blog/ffmpeg-guide/
https://github.com/WritingMinds/ffmpeg-android-java

There is no native way to do this that I found but there are many conversion websites like this

Related

I am confused what ffmpeg file is in android

Please can anyone tell me the usages of ffmpeg file in android. Though I tried to browse but none of them satisfied me.
FFMPEG is library,it will used to decode and encode audio,video file , if you are streaming a video from your android application it will be used.

how to use Lame library in android to convert .Pcm file to Mp3

I am using Lame library to convert pcm file to mp3 in android.
using this link I compiled it and every thing is ok.
but I don't know how to use this library to convert .Pcm file to .Mp3 in android studio.
any sample code or any hint would be appreciated
This is an example: https://github.com/intervigilium/Lame4Android/blob/master/src/com/intervigil/lame/Main.java
It seems that you need to do a Lame object and onActivityResult do the conversion of the file or see this as a possible duplicated question: https://stackoverflow.com/a/34322713/6848782

Compress audio (mp3,3gpp) file in android before uploading it to server?

Is their any library or any other method in android that could (lossless compression) compress audio files in android.
P.s. Please refer to a library that has good documentation bcoz I found ffmpeg but was not able to use it .
You can use this library, which uses ffmpeg but with a nice java interface:
https://github.com/WritingMinds/ffmpeg-android-java/blob/master/README.md

how to Create Video using Image And mp3 file?

I want to Create video using Image and mp3 or m4a file.
I try to use ffmpeg library but that library still not working for me.
I’m also try to use Media-codec and MediaMuxer.
if you have any new library or code then please suggest me.
Thanks in advance.

How to open a pdf file in cocos2d-x project?

I want to open a file (pdf file to be exact) in iOS and Android through my cocos2d-x Project. It is to serve as help in my game. Is there any way to do so. I found we can open it in webview but how to do so on both iOS and android?
Thanks in advance
Short answer is no! Cocos2d family does not natively support PDF.
However, you can use open source C++ libraries to convert PDF to PNG on fly and load it as a texture in cocos2d-x.
My recommendation is to covert pdf to png on a PC and load png in cocos2d-x.
I did it using WebView both on Android and iOS. Also #kasra was correct and his way too works as a solution.

Categories

Resources