Tagged Questions
0
votes
1answer
13 views
av_guess_format h264 returns NULL on Android
executing this code:
av_log_set_callback(_log_callback);
av_register_all();
avcodec_register_all();
LOG(avcodec_configuration());
AVOutputFormat * fmt = av_guess_format( "h264", NULL, NULL );
And ...
0
votes
0answers
32 views
FFmpeg exit value = 4
I try to run ffmpeg command on android devices. On some of them the code below works excellent and the video is created. But on some(e.g. motorola xoom) the exit value is 4. And while debugging on ...
0
votes
0answers
32 views
ffmpeg network congestion(block)
everyone!
I use ffmpeg (avformat_open_input()) to open a network stream example "mms".
And then ,i read frames 、decoder and play.
Finall close it with avformat_close_input().
Above process are no ...
-3
votes
0answers
43 views
Video as live wallpaper [closed]
I was trying to set this enter link description here compile app on my device, but then i hate test this, show error in application and close. Why?
Sorry for my english :L
0
votes
0answers
26 views
Simple Build of Libavcodec.so and libavformat.so on Mac
Who needs ffmpeg? Not me. What I need is to be able to decode a video stream along with its audio stream, so that can put the frames on an opengl surface in sync with the audio.
FFmpeg is a tool ...
0
votes
0answers
37 views
.So file for FFMPEG from NDK
I am not able to make .So file for FFMPEG from NDK .
I Just Download a zip file from GitHub
https://github.com/appunite/AndroidFFmpeg
Then i used CYGWIN for using NDK commends for making .so file ...
0
votes
1answer
45 views
Android FFMPEG doesn't recognize file: protocol
I'm running an android ffmpeg build through the Runtime.getRuntime().exec() command
Problem is that when i specify the input as a file i get this error:
E/MainActivity(18168): ...
1
vote
0answers
36 views
FFMPEG Custom Read function reads all the data
I'm trying to implement a custom read function for ffmpeg that will retrieve a buffer from local video ( from device in the future) and then deocde this buffer, etc..
So, here's my read function
...
0
votes
0answers
85 views
Rebuilding opencv and ffmpeg with x264 results in java.lang.UnsatisfiedLinkError
I've followed the readme file included with the cppjars zip file from javacv, I'm able to successfully build the libraries but when i run my app with the new .so files i get a ...
-1
votes
0answers
33 views
ffmpeg, built for android unable to read input with spaces [closed]
I have been working on an android multimedia application, where i'm using ff-mpeg 0.11.1 (code name: Love). Ff-mpeg 0.11.1 has been built according to the guardian project. This project is working ...
0
votes
1answer
78 views
Android audio processing using ffmpeg?
I am develloping my own android media player ,so i opted for ffmpeg for decoding, i've successfully decoded and rendered video but there is no sound now i don't know how to add audio decoding audio to ...
0
votes
0answers
20 views
Ffmpeg-Build: Error during build
I am building ffmpeg and stuck in an unusual spot. Inside libavutil we have float_dsp.h and float_dsp.c files. Inside these file there is a declaration of a methond which is:
void ...
1
vote
0answers
73 views
Build FFMPEG 1.2 (Code name magic) for android
I'm working on a multimedia project. Where i need to concatenate more than one videos. I found that ffmpeg concat demuxer has been added to ffmpeg fire flower (version 1.1). Somebody help me out on, ...
2
votes
1answer
65 views
FFMPEG & JNI : How to decode from URL
I'm trying to make an android application that uses the FFMPEG for decoding videos that are not supported by Android ( not on all the devices at least ): MPEG-TS & h264 Main Profile.
So, until ...
0
votes
1answer
84 views
How can I capture low resolution video on Android reliably across a range of devices?
Hello Android video experts :)
I am developing an Android application which allows the user to capture video and upload it to a remote server (it's more involved than that but the rest of the app is ...
0
votes
0answers
46 views
Android: Not able to Run ffmpeg-1.0.1 and above
I'm able to compile ffmpeg-0.8.14 and its creating the library file. If I compile ffmpeg-1.0.1 and above it is showing the following error.
Error:
modifying Makefiles... generating av.mk in ...
0
votes
0answers
61 views
AndroidBitmap_lockPixels always failing
In my jni module I copy images to bitmaps, which were previously
passed from my java application.
I do this using AndroidBitmap_lockPixels/AndroidBitmap_unlockPixels.
Basically, it renders the image ...
9
votes
4answers
326 views
Concatenate mp4 files in Android using halfninja ffmpeg
I've manage to compile halfninja ffmpeg scripts for Android NDK using NDK version r5c. (Unfortunately any attempt to compile with earlier NDK generated some error), also I'm not very knowledgeable on ...
0
votes
1answer
72 views
Is there any way to change bitrate of MP3 file in Android? [closed]
In Android, there are no classes or libraries to change bitrate of MP3 files. So we must use extended libraries.
There are two extended library to do this, one is ffmpeg and another is lame. But in a ...
0
votes
0answers
60 views
FFmpeg Audio Video Synchronisation
I have been trying to create a video using the video feed from the Android Camera...
The preview frames from the camera are captured and are piped to ffmpeg input and audio is captured using ...
0
votes
0answers
191 views
Rendering video streaming in android
I've successfully cross-compiled a c++ streaming library to the ICS platform
This library contains a sample player that uses sdl library to render the resulting decoded streams and libav for ...
0
votes
1answer
44 views
Not able to read audio streams with ffmpeg
I am trying to solve a big problem but stuck with very small issue. I am trying to read audio streams inside a video file with the help of ffmpeg but the loop that should traverse the whole file of ...
1
vote
0answers
110 views
Changing the bit rate of an MP3 bitrate on Android without ffmpeg
In my project, I have a 320kbps MP3 that is quite large. Since it's so big, I'd like to convert it to use a lower bit rate (about 80kbps).
I know that the ffmpeg library exists to do this, but using ...
0
votes
0answers
43 views
How to show the camera preview always in the Spydroid-ffmpeg project
I'm tring to readapt the https://github.com/vanevery/spyd-ffmpeg project to my own. This project streams the video and/or audio captured by the phone camera via rtsp and it can be received in a ...
0
votes
1answer
95 views
Get frame from live video stream
I am streaming live video from my camera on my android phone to my computer using the MediaRecorder class.
recorder.setCamera(mCamera);
recorder.setVideoSource(MediaRecorder.VideoSource.CAMERA);
...
1
vote
0answers
104 views
FFMPEG: change sample rate/bit rate of a video with android-ndk
hi I am trying to change the sample rate of the audio streams of a video file using ffmpeg. but i am not able to change audio of the original file. Till now i am able to read audio and video streams ...
0
votes
1answer
178 views
video created using ffmpeg and H264 codec does not play on android :player says it is not a divx file
I have created a video from images using ffmpeg and H264 codec in C.
I can run the video using a 3rd party player (V player ) on android devices.
But the native player does not play the video. IT says ...
-1
votes
1answer
65 views
Android streaming screen [closed]
Im able to share screen via ffmpeg
./ffmpeg -f fbdev -r 24 -i /dev/graphics/fb0 http://localhost:8090/feed1.ffm
But the output live stream is very slow.
Following is the conf file which I'm using.
...
0
votes
0answers
139 views
FFMPEG: convert a mp4 to mp3 using ffmpeg-android ndk
I want to convert a video file of mp4 format to audio file of mp3 format. It is simple through command line but i cannot find how can i convert it through jni. Not sure which library and which ...
0
votes
2answers
234 views
geting no result from GetStringUTFChars JNI
android NDK for my android application. i am stuck on the starting lines and it is not compiling further. Following is my code. It doest not compile after "str = (*env)->GetStringUTFChars(env, ...
0
votes
0answers
152 views
avcodec_find_encoder(AV_CODEC_ID_H264) returns null
I am building an android application which will encode image captured from camera preview and later decode it. I am using ffmpeg library to encode and decode. To build static library with x264 I have ...
0
votes
1answer
109 views
H.264 is patented. What happens when developing a commercial app in Android using H264 codec in ffmpeg? [closed]
H.264 is patented.
In countries where patents on software algorithms are upheld, vendors
and commercial users of products that use H.264/AVC are expected to
pay patent licensing royalties for ...
0
votes
0answers
34 views
Getting Error during executin native android code
Error on my console
bash: cannot set terminal process group (-1): Inappropriate ioctl for device
bash: no job control in this shell
Your group is currently "mkpasswd". This indicates that your
gid ...
0
votes
1answer
80 views
CANNOT LINK EXECUTABLE error with required libs loaded. How to link them properly? [duplicate]
edit: I'm aware of the possible duplicate, but the answer it's not directly applicable. I'm using ProcessBuilder and not Runtime.getRuntime().exec:
public int execProcess(List<String> cmds, ...
0
votes
0answers
126 views
FFmpegFrameGrabber crashes 100% of time attempting to compress video on Android
I am attempting to use javacv/ffmpeg to compress video on an Android device prior to upload. I am using this code:
FrameGrabber grabber = new FFmpegFrameGrabber(inputFile.getAbsolutePath());
...
0
votes
0answers
55 views
Apply sound effects on a video file
I am a little miss guided here and it seems i am totally lost. I am developing an android app and its core idea is to develop a video recorder and video player that applies some sound effects on the ...
0
votes
1answer
199 views
av_read_frame function in ffmpeg in android always returning packet.stream_index as 0
I am using the following standard code pasted below (ref: http://dranger.com/ffmpeg/) to use ffmpeg in android using ndk. My code is working fine in ubuntu 10.04 using gcc compiler. But I am facing an ...
0
votes
0answers
73 views
getting error while compiling ffmpeg
I am compiling ffmpeg for android in windows with cygwin.
I am using-
1. android ndk r5
2. ffmpeg-0.10.3
3. cygwin
Everthing works fine but when i run last command then after few minutes it gives ...
2
votes
0answers
196 views
ffmpeg audio synch issue - fractional framerate
We are working on an Android app which uses the ffmpeg library via JNI to edit the frames of a video while keeping size, codec etc the same.
We are having an issue where the audio of the output ...
2
votes
1answer
126 views
Problems with ffmpeg command line on android
I managed to compile the ffmpeg Static build. But when I am trying to call the ffmpeg command line I get a Java IOException: No such file or Directory.
My code is as follows:
public void ...
0
votes
1answer
324 views
How to compile ffmpeg-0.10.3 on windows with cygwin and android ndk r5
I want to compile ffmpeg on windows with cygwin and android ndk.
I found this link very useful because there is step to step guide to compile ffmpeg.
Does anyone find this useful? - Compiling FFMPEG ...
0
votes
0answers
141 views
crtbegin_static.o file missing for android toolchain (when complie ffmepg)
I'm using android-ndk-r8d-windows and cygwin, and I'm trying to compile ffmpeg on android.
I get stuck and the log file says "e:/ffmpeg/jni/temp/ffconf.6zOhxLrc.o
arm-linux-androideabi-gcc.exe: error: ...
0
votes
0answers
124 views
fffmpeg gets the frame from the rtsp
I'm using IP CAMERA and
I'm trying to use ffmpeg tutorial in Android
and I get the frame and send to bitmap
and Works well
but when it gets frame from the rtsp
somethings wrong
frame is corrupted
I ...
0
votes
1answer
126 views
Having problems compiling ffmpeg for Android
I'm trying to compile ffmpeg for Android using this guy script (https://github.com/guardianproject/android-ffmpeg) because it looked like the simplest and the whole NDK is really not my area of ...
1
vote
1answer
332 views
FFMPEG “no such file or directory” on Android
I am trying to use the ffmpeg binary and call it via a native linux command in android. Most of the commands work fine but the problem is that when i need to pass an http url as an input to the -i ...
0
votes
0answers
96 views
compile FFmpeg → Android { error: crtend_android.o: No such file or directory }
I'm trying to complie FFmpeg on Android 4.0 (SAMSUNG GT-3113), and I meet an error when I try to get config.h and config.mak files.
I'm using android-ndk-r8d and cygwin.
The config.sh file which I ...
1
vote
0answers
86 views
Video from VFR Image Sequence
I am using ffmpeg to create video from an image sequence that is taken from the Android Camera's PreviewCallback method onPreviewFrame...
The images are written to a pipe that is connected to ...
0
votes
0answers
151 views
Android App: Convert 3gp to mp3
My soundfiles should be changed from 3gp to mp3.
I've tried to do this with ffmpeg:
ffmpeg -i input.3gp -vn -acodec libmp3lame -ab 64k output.mp3
But the new mp3 file is only 0 KB big.
Could ...
-2
votes
1answer
247 views
Video created using H263 codec and ffmpeg does not play on android device [closed]
I have created a video using FFmpeg and H263 codec. But when I play the video on an Android device the player is unable to play it. I have used both the extensions .mp4 and .3gp.
void ...
1
vote
0answers
400 views
Samsung S3: 'Cannot play Video' on stock Video player
I am unable to play a mp4 video(H.264 Baseline, AAC) on Samsung S3, Android Version: 4.1.1, stock video player but plays on VLC. The same video plays on Galaxy Beam, Android Version: 2.3.6, stock ...


