ffmpeg

FFMpeg + Eclipse on Windows: How to add the library to Eclipse?

Hi, Firstival, I am not familiar with how to add such a library in Eclipse IDE for C/C++ project. I have downloaded the lasted ffmpeg library from: http://www.ffmpeg.org/download.html and have done several steps: Includes: libavcodec + libavformat + ffmpeg (parent directory) Libraries: avcodec + avutil + avfilter + avdevice Then I...

FFMpeg: CFLAGS=-D__STDC_CONSTANT_MACROS ./configure where?

Hi, I got this problem " 'UINT64_C' was not declared in this scope" while using the ffmpeg library for Eclipse running under Ubuntu. After a while, I have found this solution: http://code.google.com/p/ffmpegsource/issues/detail?id=11 But I could not know how to this: This should be fixed in our build system no matter what version ...

ffmpeg: compress video?

Hi, My question is for an experienced developer with ffmpeg. Would it be possible to compress a video with ffmpeg? What is the difference between encoding and decoding? Thanks in advance! ...

Free - SWF to FLV Converter

I want to convert the SWF files to FLV formats, please let me know if we have any freewares? Any help, please. ...

Compiling SDL on a MAC

#include "ffmpeg/libavcodec/avcodec.h" #include "ffmpeg/libavformat/avformat.h" #include "ffmpeg/libswscale/swscale.h" #include "ffmpeg/libswscale/rgb2rgb.h" #include "ffmpeg/libswscale/swscale_internal.h" #include <stdio.h> #ifdef __MINGW32__ #undef main /* Prevents SDL from overriding main() */ #endif #include "SDL.framework/Heade...

How to extract a video segment from a video using FFMPEG?

I am a newbie to FFMPEG, I am stuck at using FFMPEG to extract a segment of video. Since I am using the direct command line interface. What would be the command line arguments if I am to extract say, video from frame 0 to frame 100000 or if I wanted to extract a video segment of 1 hour from a video that is 5 hours long? Thanks! ...

Watermarking video from the Linux command line

Hi, does anyone know how to watermark video from the Linux command line using a simple tool? Watermarking in ffmpeg isn't supported in the current version, and requires a custom compile. Max. ...

Live video stream on server (PC) from images sent by robot through UDP

Hmm. I found this which seems promising: http://sourceforge.net/projects/mjpg-streamer/ Ok. I will try to explain what I am trying to do clearly and in much detail. I have a small humanoid robot with camera and wifi stick (this is the robot). The robot's wifi stick average wifi transfer rate is 1769KB/s. The robot has 500Mhz CPU and...

How to create uncompressed avi from a compressed video using FFMPEG

I need to create an uncompressed avi from a compressed video (.mpg). How do I do that using ffmpeg? Thanks! ...

Trying to capture display output for real-time analysis with OpenCV; I need help with interfacing with the OS for input

Hi, I want to apply operations from the OpenCV computer vision library, in real time, to video captured from my computer display. The idea in this particular case is to detect interesting features during gameplay in a popular game and provide the user with an enhanced experience; but I could think of several other scenarios where one wo...