Questions about using the ffmpeg command line tool should be asked on Super User.

learn more… | top users | synonyms

70
votes
4answers
36k views

FFMPEG on Android

I have got FFMPEG compiled (libffmpeg.so) on Android. Now I have to buld either an application like RockPlayer or use existing android MM framework to invoke FFMPEG. Do you have steps / procedures / ...
29
votes
3answers
38k views

ffmpeg for a android (using tutorial: “ffmpeg and Android.mk”)

I am trying to compile ffmpeg for a android. I have found several posts on this theme but non of these seems to work. If tried to build ffmpeg like it is posted on [1]. Did anybody successfully ...
8
votes
3answers
24k views

Using FFMPEG library with iPhone SDK for video encoding

I need to encode several pictures shot by the iphone camera into a mp4 video file and I know FFMPEG can do this (the application TimeLapser and ReelMoments do it already). I plan to use this in my app ...
32
votes
5answers
19k views

Solid FFmpeg wrapper for C#/.NET

I have been searching the web for some time for a solid FFmpeg wrapper for C#/.NET. But I have yet to come up with something useful. I have found the following three projects, but all of them apears ...
12
votes
6answers
34k views

OpenCV with Network Cameras

I'm using openCV 1.1pre1 under Windows. I have a network camera and I need to grab frames from openCV. That camera can stream a standard mpeg4 stream over RTSP or mjpeg over http. I've seen many ...
17
votes
4answers
12k views

Anyone know of a set of C# bindings for FFMPEG? [closed]

Does anyone know of a set of bindings for C# to drive the FFMpeg library directly ? I could shell to ffmpeg.exe directly but I found it hard to sync/control as a separate process. any help would be ...
13
votes
5answers
17k views

Working way to make video from images in C#

Does anybody have a known reliable way to create a video from a series of image files? Before you mod me down for not searching for the answer before posting the question, and before you fire off a ...
2
votes
1answer
5k views

Use FFMPEG on Android [closed]

Does somebody know how to use FFMPEG on Android to convert YUV420 frame to H.264? I have ported FFMPEG work on Android with NDK, I just don't know how to use it. A source code is appreciated.
5
votes
1answer
5k views

Audio output with video processing with opencv

I am processing video with opencv, but at the same time I need to play audio and simply control it, like loud or current frame number. I think I should create a parallel process with ffmpeg, but I ...
36
votes
1answer
14k views

Who can tell me the difference and relation between ffmpeg, libav, and avconv

when I run ffmpeg on Ubuntu, it shows: $ ffmpeg ffmpeg version v0.8, Copyright (c) 2000-2011 the Libav developers built on Feb 28 2012 13:27:36 with gcc 4.6.1 This program is not developed anymore ...
23
votes
3answers
13k views

Using FFmpeg in .net?

So i know its a fairly big challenge but i want to write a basic movie player/converter in c# using the FFmpeg library. However the first obstacle i need to overcome is wrapping the FFmpeg library in ...
14
votes
6answers
15k views

Can ffmpeg show a progress bar?

I am converting a .avi file to .flv file using ffmpeg. As it takes a long time to convert a file I would like to display a progress bar. Can someone please guide me on how to go about the same. I ...
25
votes
9answers
9k views

Crop MP3 to first 30 seconds

Original Question I want to be able to generate a new (fully valid) MP3 file from an existing MP3 file to be used as a preview -- try-before-you-buy style. The new file should only contain the first ...
4
votes
4answers
11k views

FFmpeg on iPhone - Modifying Video Orientation

I'm messing with h264 videos loaded with FFmpeg on the iPhone 3GS. The problem is any videos recorded in "Portrait" orientation have a transformation matrix applied to them causing them to display ...
6
votes
3answers
5k views

problem compiling ffmpeg for iFrameExtractor

I'm trying to compile the ffmpeg by using the make and build files in iFrameExtractor example. firstly i tried to follow the readme file on the github, which only says to run the ./build_universal in ...
16
votes
5answers
69k views

HTTP Live Streaming, FFMPEG & FFSERVER, and iPhone OS 3

In iPhone OS 3, Apple has introduced HTTP Live Streaming which should allow live streaming of video from the internet. I am currently operating a webcam, which feeds into my server, and is then ...
29
votes
5answers
32k views

Rotating videos with FFmpeg

I have been trying to figure out how to rotate videos with FFmpeg for some time now. I am working with iPhone videos taken in portrait mode. I know how to determine the current degrees of rotation ...
26
votes
4answers
10k views

ffmpeg: 1 image + 1 audio file = 1 video [closed]

This should be pretty trivial but I can't find a way to get it to work. I want ffmpeg to take one jpg image and an audio file as input and generate a video file of the same duration as the audio file ...
6
votes
9answers
15k views

How to install FFMpeg in WampServer 2.0 (Windows XP) [closed]

I need to install the ffmpeg PHP extension on my localhost so I can test few of my scripts but I am having troubles figuring out how to do that. I have WampServer 2.0 with PHP 5.2.9-2, my OS is ...
4
votes
2answers
2k views

ffmpeg MAMP “dyld: Library not loaded” error

I am using ffmpeg on Mac OSX 10.7.3 in MAMP through PHP's exec() command, I have an absolute path set to call ffmpeg, e.g. /opt/local/bin/ffmpeg -i "/sample.avi" But I receive the following error - ...
2
votes
2answers
573 views

Android video trimming via ffmpeg

I have downloaded video trimming code from github from this link. It’s working perfectly for the first time, but when I try to run it for the second time the code crashes without any exception then ...
2
votes
3answers
5k views

Run a ffmpeg process in the background

I am wanting to use ffmpeg to convert video to .flv in php. Currently I have this working, but it hangs the browser until the file is uploaded and is finished. I have been looking at the php docs on ...
18
votes
3answers
32k views

how to run and install phpize

I have been meaning to install ffmpeg as an extension to my php setup. So before I can install it, I need to phpize it. I installed php5-dev by sudo apt-get install php5-dev But now when I run phpize ...
0
votes
1answer
979 views

ffmpeg vfilters at specific timecodes

I want to add a watermark to some videos but I only want the watermark to appear at certain timecodes in the video (e.g. beginning / middle / end) and only for a few seconds. I've gotten ffmpeg to do ...
11
votes
2answers
10k views

How can I add audio (mp3) to a flv (just video) with ffmpeg?

How can I add sound from a mp3-file to a flv file that has no audio? (With ffmpeg) When I use ffmpeg -i video.flv -i audio.mp3 -acodec copy -vcodec copy -ab 128k -ar 44100 output.flv I get this ...
11
votes
3answers
5k views

Can FFmpeg be used as a library, instead of a standalone program?

I'd like to add video conversion capabilities to a program I'm writing. FFmpeg's command line interface for doing this is simply ffmpeg -i InputFile OutputFile, but is there a way to make use of it as ...
18
votes
5answers
13k views

ffmpeg C API documentation/tutorial [closed]

I am trying to find documentation to use the ffmpeg C API. It seems that only command line documentation is available. Is there any good documentation/tutorials/links available?
4
votes
2answers
5k views

Using FFmpeg with Android-NDK

I want to use FFmpeg with Android-NDK and I am very basic in this section, I need some help and I research about this topic before on the net, but got no satisfactory solution. 1 - How can I use ...
14
votes
4answers
17k views

use java-ffmpeg wrapper, or simply use java runtime to execute ffmpeg?

I'm pretty new to Java, need to write a program that listen to video conversion instructions and convert the video once an new instruction arrives (instructions is stored in Amazon SQS, but it's ...
9
votes
1answer
3k views

How to crop a mp3 from x to x+n using ffmpeg?

Following this question I decided to use ffmpeg to crop MP3s. On another question I found this way of doing it: ffmpeg -t 30 -acodec copy -i inputfile.mp3 outputfile.mp3 The problem is that I don't ...
8
votes
1answer
9k views

Image sequence to video quality [closed]

I have been experimenting with creating a video from a sequence of images. When I use the suggested ffmpeg method: ffmpeg -f image2 -i image%d.jpg video.mpg The video is not really as good as I ...
6
votes
1answer
3k views

Pipe raw OpenCV images to FFmpeg

Here's a fairly straightforward example of reading off a web cam using OpenCV's python bindings: '''capture.py''' import cv, sys cap = cv.CaptureFromCAM(0) # 0 is for /dev/video0 ...
4
votes
0answers
1k views

Does anyone find this useful? - Compiling FFMPEG on Windows with Cywin and NDK r5 [closed]

Does anyone find this information useful in anyway? I've been trying to compile this thing for a while now and I know of the numerous posts floating around the internet offering help. I have read and ...
3
votes
1answer
650 views

Superimposing two videos onto a static image?

I have two videos that I'd like to combine into a single video, in which both videos would sit on top of a static background image. (Think something like this.) My requirements are that the software I ...
0
votes
2answers
5k views

How to decode audio via FFmpeg in Android

I am writing a player for Android with FFmpeg compiled for Android NDK. I could open the file through FFmpeg and wrote this: av_register_all(); char* str = (*env) -> GetStringUTFChars(env, ...
1
vote
1answer
340 views

How to include FFMPEG functions in android code

My aim is to build a video file by combining an audio clip and an image for android. Using cygwin, I was able to create the video by combining an image and an audio clip as follows: ffmpeg -i ...
1
vote
2answers
2k views

How to change audio tempo and pitch individuality using ffmpeg?

I have managed to play audio files using ffmpeg and AudioTrack class in my android project. I can change the speed of audio using AudioTrack class setRate method. But it also change the pitch of ...
-3
votes
2answers
104 views

difficulty in building ffmpeg for windows

I am making an app in which i want to use ffmpeg library.I have successfully compiled the library in windows,but i have not seen the ffmpeg.so,but i got the ffmpeg.exe file.Can you please tell me how ...
8
votes
4answers
5k views

C# and FFmpeg preferably without shell commands?

I'd like to be able to use FFmpeg to convert a video file from within my C# program. I know I can just call a shell command, but is there a better way? The issue with invoking a command via the ...
7
votes
1answer
4k views

Video encoding libraries for iOS

I really stucked with that problem, because I haven't seen enough information in the internet regarding video encoding in iOS, however we can observe plenty of apps that deal with the problem of video ...
8
votes
2answers
3k views

Add an image to mp3, and convert it to a video file using ffmpeg [closed]

I have the following files: 1. a jpeg image 2. an mp3 file of some length say (3 minutes) I want to convert this to a .3gp video. How do I do it? I've tried the following: Created a video of ...
18
votes
2answers
6k views

Get ffmpeg information in friendly way

Every time I try to get some information about my video files with ffmpeg, it pukes a lot of useless information mixed with good things. I'm using ffmpeg -i name_of_the_video.mpg. There are any ...
4
votes
1answer
2k views

ffmpeg Progress Bar - Encoding Percentage in PHP

I've written a whole system in PHP and bash on the server to convert and stream videos in HTML5 on my VPS. The conversion is done by ffmpeg in the background and the contents is output to block.txt. ...
0
votes
2answers
5k views

Decoding audio via Android using FFMpeg

I can play Wav files using the below code without issues. When trying to play the exact same media in Mp3 format I only get garbled junk. I believe I am fundamentally misunderstanding how the ...
13
votes
1answer
2k views

Decoding Video using FFMpeg for android

I tried to decode video using FFMpeg library from the sample examples available on internet, i figure it out with new version of ffmpeg, here is the code which I called from my class file, private ...
7
votes
3answers
2k views

Getting realtime output from ffmpeg to be used in progress bar (PyQt4, stdout)

I've looked at a number of questions but still can't quite figure this out. I'm using PyQt, and am hoping to run ffmpeg -i file.mp4 file.avi and get the output as it streams so I can create a ...
5
votes
4answers
4k views

Getting length of video

I am having trouble finding a simple example of how to get the video length of a file programmatically. Many people say, oh use this library/wrapper or whatever, but do not say how. I have downloaded ...
2
votes
1answer
1k views

ffmpeg AVFrame get full decoded data to char*

I get Frames in loop and decode it with ffmpeg getting AVFrame as e result of it. So I must get neccessary pixel data of frame into char* and give as a callback function's parameter. So how I can ...
2
votes
5answers
9k views

Build FFMPEG with x264 for Android

I am trying to build FFMPEG with libx264 for Android. I can successfully build and use FFMPEG for Android but I realized that I need the ability to encode, therefore I am trying to build FFMPEG with ...
1
vote
3answers
9k views

Install FFMPEG on XAMPP

I have installed xampp 1.7.4 with php version 5.3.5 on windows xp. How to install ffmpeg in xampp with php 5.3.5 on windows xp?

1 2 3 4 5 9