| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 1 year |
| seen | 2 hours ago | |
| stats | profile views | 29 |
|
2d |
awarded | Announcer |
|
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 9 |
revised |
How to capture desktop sounds (Pulse Audio output) from avconv? ffmpeg != avconv |
|
May 9 |
suggested | suggested edit on How to capture desktop sounds (Pulse Audio output) from avconv? |
|
May 6 |
comment |
ffmpeg for 13.04 @Levan Alternatively you can simply use a static build of ffmpeg if you're feeling lazy. |
|
May 3 |
revised |
ffmpeg / avconv follow_mouse not working? typo |
|
May 2 |
answered | ffmpeg / avconv follow_mouse not working? |
|
May 2 |
awarded | Yearling |
|
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 |
answered | ffmpeg resize “could not find codec parameters” |
|
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. |