Tagged Questions

FFmpeg is a free software / open source project that produces libraries and programs for handling multimedia data. FFmpeg is published under the GNU Lesser General Public License 2.1+ or GNU General Public License 2+ (depending on which options are enabled).

learn more… | top users | synonyms

21
votes
3answers
10k 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 / ...
21
votes
6answers
7k 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 ...
20
votes
1answer
1k views

Is 'Android+FFMpeg' friendship really available?

The question does not mean that I'm interested if ffmpeg code can be used on Andoid. I know that it can. I'm just asking if somebody has the real performance progress with that stuff. I've created the ...
18
votes
4answers
1k views

Generating movie from python without saving individual frames to files

I would like to create an h264 or divx movie from frames that I generate in a python script in matplotlib. There are about 100k frames in this movie. In examples on the web [eg. 1], I have only seen ...
18
votes
8answers
4k 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 ...
17
votes
2answers
490 views

Decoding RIMM streaming file format

I want to decode the video (visual) frames within a Blackberry RIMM file. So far I have a parser, and some corresponding container documentation from RIM. The video codec is H264 and is explicitly ...
17
votes
5answers
19k 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 ...
14
votes
6answers
48k 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 ...
13
votes
1answer
938 views

FFMPEG with hardware codec support

I have built a simple media player using ffmpeg on Android 2.2. Hardware is an arm cortex-a8 based 1GHz processor, 512 MB RAM. I am getting low performance, around 15 FPS for 800x600 mp4 video. I have ...
13
votes
2answers
459 views

Getting artifacts when trying to read video stream from YouTube

I'm trying to read the video frames from the RTSP stream that I get from YouTube. Here is the link for my test video: ...
13
votes
3answers
3k 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 ...
13
votes
8answers
18k views

How to best convert Flash compatible mp4 files with FFMPEG

I am trying to convert different files to a flash compatible .mp4 file with ffmpeg, but i cant seem to succeed. Of cource the objective is to get the greatest quality with the smallest file size. So ...
13
votes
5answers
8k views

Anyone know of a set of C# bindings for FFMPEG?

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 ...
12
votes
1answer
4k views

Meaning of ffmpeg output (tbc, tbn, tbr) [closed]

Hey - I am using ffmpeg to tell me video info. Specifically: ffmpeg -i video.ext I get the output: Stream #0.0[0x1e0]: Video: mpeg2video, yuv420p, 704x576 [PAR 12:11 DAR 4:3], 9578 kb/s, 25 tbr, ...
12
votes
2answers
10k views

ffmpeg settings for converting to mp4 and ogg for HTML5 video [closed]

Despite all the hype, in reality the HTML5 video tag has a bit of a problem. In order to use it and for it to be cross browser compatible, you have to include more than one format of the video. To ...
11
votes
0answers
539 views

FFmpeg sample code for creating a video file from still images JNI Android

How i modify the following FFMPEG sample code for creating a video file from still images that i am having in my android phone. I am using JNI for invoking ffmpeg. JNIEXPORT void JNICALL ...
11
votes
2answers
1k views

ffmpeg: 1 image + 1 audio file = 1 video

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 ...
11
votes
6answers
7k 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 ...
9
votes
3answers
5k views

ffmpeg mp3 conversion failed

using ffmpeg to convert from flv to mp3 gives the following result ] ffmpeg-0.6.1 >> ffmpeg -i name.flv name.mp3 FFmpeg version 0.6.1, Copyright (c) 2000-2010 the FFmpeg developers built on Feb 14 ...
9
votes
7answers
5k views

Screenshot of the Nexus One from adb?

My goal is to be able to type a one word command and get a screenshot from a rooted Nexus One attached by USB. So far, I can get the framebuffer which I believe is a 32bit xRGB888 raw image by ...
9
votes
6answers
11k 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 ...
8
votes
3answers
704 views

How to extract orientation information from MOV videos created on the iPhone using ffmeg, ruby or objectivec?

After surfing through tons of documentation on the web it seems that the iPhone always shoots the video at a 480x360 aspect ratio and applies a transformation matrix on the video track. (480x360 may ...
8
votes
1answer
2k views

How to seek in FFmpeg C/C++

Does anyone know how to implement seeking by seconds (or milliseconds) in FFmpeg. I currently have a loop running through the frames of a video using av_read_frame() and I want to determine what time ...
8
votes
5answers
9k 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 ...
7
votes
1answer
827 views

FFmpeg Hardware Acceleration -> GPU + DirectShow

Is there a hardware accelerated version of FFmpeg (e.g. a version that utilizes the GPU)? Also, does anybody use FFmpeg with GPU support? Possibly for scaling and converting video format? Or, for ...
7
votes
1answer
7k views

Android Video Player Using NDK, OpenGL ES, and FFmpeg

Ok so here is what I have so far. I have built FFmpeg on android and am able to use it fine. I have been able to load a video into FFmpeg after passing the chosen filename from the java side. To save ...
7
votes
5answers
5k views

Fetch frame count with ffmpeg

Does anyone know how to fetch the number of total frames from a video file using ffmpeg? The render output of ffmpeg shows the current frame and I need the frame count to calculate the progress in ...
7
votes
4answers
2k 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
3answers
3k views

Understanding and using ffmpeg settings

Where is the best documentation of ffmpeg and libavcodec? It appears that ffmpeg supports many undocumented options that it is very hard to find a good reference.
7
votes
4answers
2k views

How to join webcam FLVs

I want my website to join some webcam recordings in FLV files (like this one). This needs to be done on Linux without user input. How do I do this? For simplicity's sake, I'll use the same flv as both ...
6
votes
5answers
778 views

rtsp stream capturing

I'm looking for some universal way to dump rtsp stream. I want to figure out, that some rtsp stream is working well and server is sending some watchable video. openRTSP At first, google recommends ...
6
votes
4answers
513 views

.NET FFmpeg wrapper for video playback

Looking for an FFmpeg wrapper usable in .NET. The wrapper must support video playback with audio. The following projects are incomplete FFmpeg wrappers: http://code.google.com/p/ffmpeg-sharp/ ...
6
votes
5answers
8k 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 ...
6
votes
3answers
2k views

HTML5 <audio>/<video> and live transcoding with FFMPEG

So from my web server, I would like to use FFMPEG to transcode a media file for use with an HTML <audio> or <video> tag. Easy enough right? The conversion would need to take place in ...
6
votes
3answers
2k views

Best Overall FFMPEG FLV Quality

First of all, FFMPEG has the worst documentation of all time... secondly, the syntax is so trivial that it's hard to understand what some lines are doing. What I'm looking to accomplish is the best ...
6
votes
2answers
228 views

opencvdotnet and FFMPEG - are there any integration options?

opencvdotnet or its analogs and FFMPEG - are there any integration options? like open FLV flie or save to some exotic format... Please, provide a simple code example.
6
votes
1answer
790 views

Adding audio channel using ffmpeg

I am working on ffmpeg and trying to add a audio stream on the fly. I am using AudioQueues and I get raw audio buffer. I am encoding audio with linear PCM and hence the audio I get will be of raw ...
6
votes
2answers
1k views

Python's subprocessing with pipes and large files

I'm trying to use python + ffmpeg + oggenc to convert any audiofile to ogg. The program works, almost. But for big files (i think > ~6mb) the ffmpeg process starts to sleep at pipe_wait. I don't know ...
6
votes
4answers
4k views

How to write a video encoder with ffmpeg?

I want to write an encoder with ffmpeg which can put iFrames (keyframes) at positions I want. Where can I found tutorials or reference material for it? P.S Is it possible to do this with mencoder ...
6
votes
2answers
7k views

ffmpeg: convert audio-only flv to swf

My Flex application records audio-only FLV files using red5--I'd like to convert these to SWF files so I can embed them in other SWF files. (I could also convert to MP3 and then embed them into SWFs ...
5
votes
2answers
479 views

Live Video Chat for iPhone and HTTP Live Streaming

So generally, I want to make an app which has video chat functionality for iPhone. But after many searches, I am still not able to find any successful results. Is there any public or even for that ...
5
votes
1answer
158 views

FFMPEG Seeking brings audio artifacts

I´m implementing a audio decoder using ffmpeg. While reading audio and even seeking already works, I can´t figure out a way to clear the buffers after seeking so I have no artifacts when the app ...
5
votes
3answers
117 views

How can I turn libavformat error messages off

By default, libavformat writes error messages to stderr, Like: Estimating duration from bitrate, this may be inaccurate How can I turn it off? or better yet, pipe it to my own neat logging function? ...
5
votes
3answers
339 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
1answer
661 views

Stream video from ffmpeg and capture with OpenCV

I have a video stream coming in on rtp to ffmpeg and I want to pipe this to my OpenCV tools for live streaming processing. The rtp linkage is working because I am able to send the incoming data to a ...
5
votes
2answers
1k views

ffmpeg video to opengl texture

I'm trying to render frames grabbed and converted from a video using ffmpeg to an opengl texture to be put on a quad. I've pretty much exhausted google and not found an answer, well I've found answers ...
5
votes
1answer
3k views

ffmpeg: Combine/merge multiple mp4 videos - not working

Here is the command I am using to combine multiple videos: ffmpeg -i 75_540_38HQ2.mp4 -i 76_70_20.mp4 -i 76_173_80.mp4 -i 81_186_35.mp4 -vcodec copy -acodec copy Mux1.mp4 The resulting Mux1.mp4 does ...
5
votes
2answers
544 views

Using FFMPEG for online video hosting

I've been looking around for using FFMPEG and PHP. I've noticed you can use FFMPEG with HTML5. I've read the documentation of the FFMPEG's website and it's far beyond my knowledge. I have an open ...
5
votes
1answer
602 views

Is any book out there on programming FFMPEG encoding libs in c\c++?

Is there any book on programming FFMPEG encoding libs in c\c++? I found one http://dranger.com/ffmpeg/
5
votes
1answer
213 views

How to get the duration of the video uploaded?

i'm using ffmpeg to convert videos to desired formats and to generate the thumbnails.. I want to find the total duration of the video to display in the main page along with the thumbnails.. Can i ...

1 2 3 4 5 33