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.

105 lines
1.9KB

  1. \input texinfo @c -*- texinfo -*-
  2. @settitle FFplay Documentation
  3. @titlepage
  4. @sp 7
  5. @center @titlefont{FFplay Documentation}
  6. @sp 3
  7. @end titlepage
  8. @chapter Introduction
  9. @c man begin DESCRIPTION
  10. FFplay is a very simple and portable media player using the FFmpeg
  11. libraries and the SDL library. It is mostly used as a testbed for the
  12. various FFmpeg APIs.
  13. @c man end
  14. @chapter Invocation
  15. @section Syntax
  16. @example
  17. @c man begin SYNOPSIS
  18. ffplay [options] @file{input_file}
  19. @c man end
  20. @end example
  21. @c man begin OPTIONS
  22. @section Main options
  23. @table @option
  24. @item -h
  25. show help
  26. @item -x width
  27. force displayed width
  28. @item -y height
  29. force displayed height
  30. @item -an
  31. disable audio
  32. @item -vn
  33. disable video
  34. @item -nodisp
  35. disable graphical display
  36. @item -f fmt
  37. force format
  38. @end table
  39. @section Advanced options
  40. @table @option
  41. @item -stats
  42. Show the stream duration, the codec parameters, the current position in
  43. the stream and the audio/video synchronisation drift.
  44. @item -rtp_tcp
  45. Force RTP/TCP protocol usage instead of RTP/UDP. It is only meaningful
  46. if you are streaming with the RTSP protocol.
  47. @item -sync type
  48. Set the master clock to audio (@code{type=audio}), video
  49. (@code{type=video}) or external (@code{type=ext}). Default is audio. The
  50. master clock is used to control audio-video synchronization. Most media
  51. players use audio as master clock, but in some cases (streaming or high
  52. quality broadcast) it is necessary to change that. This option is mainly
  53. used for debugging purposes.
  54. @end table
  55. @section While playing
  56. @table @key
  57. @item q, ESC
  58. quit
  59. @item f
  60. toggle full screen
  61. @item p, SPC
  62. pause
  63. @item a
  64. cycle audio channel
  65. @item v
  66. cycle video channel
  67. @item w
  68. show audio waves
  69. @end table
  70. @c man end
  71. @ignore
  72. @setfilename ffplay
  73. @settitle FFplay media player
  74. @c man begin SEEALSO
  75. ffmpeg(1), ffserver(1) and the html documentation of @file{ffmpeg}.
  76. @c man end
  77. @c man begin AUTHOR
  78. Fabrice Bellard
  79. @c man end
  80. @end ignore
  81. @bye