327 reputation
18
bio website
location
age
visits member for 1 year
seen 11 mins ago
stats profile views 29

May
17
comment FFMPEG error : libx264 must be installed and version must be >= 0.118
Before following the guide slhck suggests consider undoing what the other guide suggested: cd ~/x264 && sudo make uninstall; make distclean; cd ~/ffmpeg && make distclean
May
6
comment ffmpeg for 13.04
@Levan Alternatively you can simply use a static build of ffmpeg if you're feeling lazy.
Apr
15
comment Im trying to stream multiple flv files using ffmpeg to Red5 server. Please help
-re is an input option, as in ffmpeg -re -i clip1.flv.
Apr
8
comment Error while adding a watermark to mp4 with FFmpeg
Please update your question with your current ffmpeg command and the complete console output.
Apr
8
comment Error while adding a watermark to mp4 with FFmpeg
The "deprecated" message is misleading as many users assume it means the FFmpeg project and not libav's version of ffmpeg: Who can tell me the difference and relation between ffmpeg, libav, and avconv?
Mar
26
comment Convert a bunch of jpegs to a movie
What is your ffmpeg command and the complete ffmpeg console output?
Mar
21
comment How to fast convert mp4 to webm using ffmpeg?
-sameq does not mean "same quality" and has been removed upstream. Do not use it. Refer to the link in my comment to your question for detailed libvpx encoding instructions.
Mar
21
comment How to fast convert mp4 to webm using ffmpeg?
See FFmpeg Wiki: vpx (WebM) Encoding Guide.
Mar
20
comment I get an error when trying to convert video
Remember to always include the complete ffmpeg console output(s) with your command(s) when asking questions about ffmpeg cli usage.
Mar
19
comment ffmpeg resize “could not find codec parameters”
I'll just add an answer.
Mar
18
comment ffmpeg resize “could not find codec parameters”
You have several options, but the "best" method is to place the ffmpeg binary in a directory and add the directory to your $PATH as shown in How to add a directory to my path?.
Mar
18
comment ffmpeg resize “could not find codec parameters”
I'm sorry, but I don't understand the question. Can you clarify?
Mar
17
comment ffmpeg resize “could not find codec parameters”
You need to make sure you're executing the ffmpeg binary properly. Either navigate to the directory containing ffmpeg and run ./ffmpeg -i input ... output (notice the ./) or provide the full path to it as in /home/andy/ffmpeg/ffmpeg -i input ... output.
Mar
15
comment ffmpeg resize “could not find codec parameters”
Yes, I should have included that. See this example.
Mar
13
comment ffmpeg resize “could not find codec parameters”
Probably a bug in the buggy, bizarro, fake version of "ffmpeg" from libav. Try a static build of real ffmpeg from FFmpeg.
Mar
13
comment Please give me an FFMPEG tutorial that works on Ubuntu 12.04
Eventually the various compile guides on the FFmpeg Wiki will become distro agnostic and will provide instructions for local installation thus avoiding system installation and the package management system, and also avoid interference with repo packages.
Mar
13
comment Please give me an FFMPEG tutorial that works on Ubuntu 12.04
The undefined reference error most likely indicates that you have two versions of x264.h installed (the bad one is probably from libx264-dev) resulting in broken builds.
Feb
25
comment Extracting images from video in 1 minute intervals
Exact duplicate of Extracting images from video in 1 minute intervals.
Feb
22
comment How to convert a raw video using ffmpeg
Also, rawvideo is not supported by the MP4 container (at least via ffmpeg).
Feb
22
comment How to convert a raw video using ffmpeg
Just to clarify: Ubuntu switched to libav, and "deprecated" the libav version of the ffmpeg binary, but do not assume that the real ffmpeg from FFmpeg is not longer being developed. Quite the opposite!