You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.2KB

  1. 1) ffserver doesn't not work.
  2. ffmpeg development is now concentrated on the codec and format
  3. handling. New developments broke ffserver, so don't expect it to work
  4. correctly. It is planned to fix it ASAP.
  5. 2) I cannot read this AVI file.
  6. Even if ffmpeg can read the AVI format, it does not support all its
  7. codecs. Please consult the supported codec list on the ffmpeg project
  8. page.
  9. 3) I cannot read this Real Audio/Video file.
  10. See (2). ffmpeg only supports Real Video 1.0 and AC3 as Real
  11. codecs. It mean that you cannot view files encoded with real tools
  12. after version 5.0.
  13. 4) I get audio/video synchro problems when grabbing.
  14. Currently, the grabbing stuff does not handle synchronisation
  15. correctly. You are free to correct it. It is planned to fix it ASAP.
  16. 5) How do I encode jpegs to another format ?
  17. If the jpegs are named img1.jpg, img2.jpg, img3.jpg,..., use:
  18. ffmpeg -i img%d.jpg /tmp/a.mpg
  19. '%d' is replaced by the image number.
  20. 'img%03d.jpg' generates img001.jpg, img002.jpg, etc...
  21. The same system is used for the other image formats.
  22. 6) FFmpeg does not support codec XYZ. Can you include a Windows DLL
  23. loader to support it ?
  24. No ! FFmpeg only supports open source codecs. Windows DLLs are not
  25. portable, bloated and often slow.