~medibuntu-maintainers/mplayer/medibuntu.precise

« back to all changes in this revision

Viewing changes to ffmpeg/doc/avprobe.texi

  • Committer: Gauvain Pocentek
  • Date: 2012-03-06 11:59:12 UTC
  • mfrom: (66.1.15 precise)
  • Revision ID: gauvain@pocentek.net-20120306115912-h9d6kt9j0l532oo5
* Merge from Ubuntu:
  - put back faac support
  - recommends apport-hooks-medibuntu
  - change Maintainer, Uploaders & Vcs-* fields.
* New upstream snapshot
* upload to unstable
* Build against external libmpeg2
* drop 51_FTBFS_arm.patch again
* no longer build depend on libcdparanoia-dev on the Hurd
* Fix FTBFS on the hurd.
  Thanks to Samuel Thibault <sthibault@debian.org> (Closes: #654974)
* Fix FTBFS on arm
* New upstream snapshot, Closes: #650339, #643621, #481807
* Imported Upstream version 1.0~rc4+svn34492
* Bump standards version
* Bump dependency on libav >= 4:0.8~, Closes: #653887
* Fix build-indep
* Build mplayer-gui again, Closes: #568514
* Drop debian/all-lang-config-mak.sh, no longer needed
* include .dfsg1 in version number
* remove get-orig-source target
* no longer prune compiler flags from the environment
* No longer advertise nor build 3fdx, mga and dxr3 backends,
  Closes: #496106, #442181, #533546
* beautify mplayer version identification string
* Brown paperbag upload.
* Next try to fix build failure on sparce after recent binutils change.
* Brown paperbag upload.
* Really fix build failure on sparc after recent binutils change.
* Properly set Replaces/Conflicts on mplayer2{,-dbg} to avoid
  file overwrite errors.
* Adjust versioning of mplayer listed in the mplayer-dbg's Depends field.
* Fix build failure on sparc after recent binutils change.
* Urgency medium bumped because of RC-level bugfix
  and speeding up x264 transition.
* Update to my @debian.org email.
* Upload to unstable
* Enable joystick support on Linux only, Closes: #638408
* Rebuild fixes toolchain issue on arm, Closes: #637077
* New upstream snapshot
* following the discussion started by Diego Biurrun <diego@biurrun.de>
  in debian-devel, I have prepared a new packaging of 'mplayer'
  (with code that comes from CVS)
* the upstream tar.bz cannot be distributed by Debian, since it contains
   CSS code; so I am repackaging it 
* I have tried my best to address all known issues:
  - the package contains the detailed Copyright made by Diego Biurrun 
  - the package does not contain CSS code, or  AFAIK other code on which 
     there is active patent enforcement
  - there is a script  debian/cvs-changelog.sh  that shows all changes
     done to files included in this source.
    This should comply with GPLv2 sec 2.a  (in spirit if not in letter)
    For this reason, the source code contains CVS directories.
* needs   make (>= 3.80) for 'html-chunked-$(1)' in DOCS/xml/Makefile

* some corrections, as suggested Diego Biurrun
  - binary codecs should go into /usr/lib/codecs (upstream default)
  - better template 'mplayer/install_codecs'
  - an empty 'font=' in mplayer.conf breaks mplayer: postinst corrected
* correction in 'mplayer/cfgnote'
* better mplayer.postinst and mplayer.config

* New upstream release
* better debian/copyright file
* do not ship a skin
* New upstream release
* changed DEB_BUILD_OPTIONS to DEB_BUILD_CONFIGURE ,
  DEB_BUILD_OPTIONS is used as in debian policy
* use gcc-3.4
* changed xlibs-dev to a long list of dependencies, for Debian/etch
* try to adhere to  http://www.mplayerhq.hu/DOCS/tech/binary-packaging.txt
  (see README.Debian for details)
* removed dependency on xlibmesa-dev, disabled opengl
* New upstream release
* Simon McVittie <hacks@pseudorandom.co.uk> wonderful work:
- Work around Debian bug #267442 (glibc's sys/uio.h and gcc's altivec.h have
  conflicting uses for __vector) by re-ordering #includes
- Fix potential symlink attack in ./configure
- Disable support for binary codecs on platforms for which those codecs
  aren't available; also disable the corresponding Debconf note when it's
  inappropriate
- Changed Build-Depends: so it works in pbuilder
- Explicitly build-depend on libjpeg62-dev, libfontconfig1-dev,
  libungif4-dev 
- Tweak debian/rules to avoid certain errors being ignored
- Use --language=all
* provide a target  'debian/rules get-orig-source' 
  that recreates the orig.tar.gz ; then use the above orig.tar.gz
* rewrote some parts of debian/rules
* don't clean and recompile docs if upstream ships them
* mplayer-doc was shipping too much stuff
* translated man pages where not installed properly
* compile with libdv4-dev
* correct README.Debian
* Forgot build-dep on libtheora
* Must not depend on libxvidcore
* New upstream release
* new release.
* rc1 to become 0.90
* new pre-release
* new pre-release
* gtk bug fixed.
* new release.
* version bumped
* 0.60 pre2 release
* 0.60 pre-release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
\input texinfo @c -*- texinfo -*-
 
2
 
 
3
@settitle avprobe Documentation
 
4
@titlepage
 
5
@center @titlefont{avprobe Documentation}
 
6
@end titlepage
 
7
 
 
8
@top
 
9
 
 
10
@contents
 
11
 
 
12
@chapter Synopsis
 
13
 
 
14
The generic syntax is:
 
15
 
 
16
@example
 
17
@c man begin SYNOPSIS
 
18
avprobe [options] [@file{input_file}]
 
19
@c man end
 
20
@end example
 
21
 
 
22
@chapter Description
 
23
@c man begin DESCRIPTION
 
24
 
 
25
avprobe gathers information from multimedia streams and prints it in
 
26
human- and machine-readable fashion.
 
27
 
 
28
For example it can be used to check the format of the container used
 
29
by a multimedia stream and the format and type of each media stream
 
30
contained in it.
 
31
 
 
32
If a filename is specified in input, avprobe will try to open and
 
33
probe the file content. If the file cannot be opened or recognized as
 
34
a multimedia file, a positive exit code is returned.
 
35
 
 
36
avprobe may be employed both as a standalone application or in
 
37
combination with a textual filter, which may perform more
 
38
sophisticated processing, e.g. statistical processing or plotting.
 
39
 
 
40
Options are used to list some of the formats supported by avprobe or
 
41
for specifying which information to display, and for setting how
 
42
avprobe will show it.
 
43
 
 
44
avprobe output is designed to be easily parsable by a textual filter,
 
45
and consists of one or more sections of the form:
 
46
@example
 
47
[SECTION]
 
48
key1=val1
 
49
...
 
50
keyN=valN
 
51
[/SECTION]
 
52
@end example
 
53
 
 
54
Metadata tags stored in the container or in the streams are recognized
 
55
and printed in the corresponding "FORMAT" or "STREAM" section, and
 
56
are prefixed by the string "TAG:".
 
57
 
 
58
@c man end
 
59
 
 
60
@chapter Options
 
61
@c man begin OPTIONS
 
62
 
 
63
@include avtools-common-opts.texi
 
64
 
 
65
@section Main options
 
66
 
 
67
@table @option
 
68
 
 
69
@item -f @var{format}
 
70
Force format to use.
 
71
 
 
72
@item -unit
 
73
Show the unit of the displayed values.
 
74
 
 
75
@item -prefix
 
76
Use SI prefixes for the displayed values.
 
77
Unless the "-byte_binary_prefix" option is used all the prefixes
 
78
are decimal.
 
79
 
 
80
@item -byte_binary_prefix
 
81
Force the use of binary prefixes for byte values.
 
82
 
 
83
@item -sexagesimal
 
84
Use sexagesimal format HH:MM:SS.MICROSECONDS for time values.
 
85
 
 
86
@item -pretty
 
87
Prettify the format of the displayed values, it corresponds to the
 
88
options "-unit -prefix -byte_binary_prefix -sexagesimal".
 
89
 
 
90
@item -show_format
 
91
Show information about the container format of the input multimedia
 
92
stream.
 
93
 
 
94
All the container format information is printed within a section with
 
95
name "FORMAT".
 
96
 
 
97
@item -show_packets
 
98
Show information about each packet contained in the input multimedia
 
99
stream.
 
100
 
 
101
The information for each single packet is printed within a dedicated
 
102
section with name "PACKET".
 
103
 
 
104
@item -show_streams
 
105
Show information about each media stream contained in the input
 
106
multimedia stream.
 
107
 
 
108
Each media stream information is printed within a dedicated section
 
109
with name "STREAM".
 
110
 
 
111
@end table
 
112
@c man end
 
113
 
 
114
@include demuxers.texi
 
115
@include muxers.texi
 
116
@include protocols.texi
 
117
@include indevs.texi
 
118
 
 
119
@ignore
 
120
 
 
121
@setfilename avprobe
 
122
@settitle avprobe media prober
 
123
 
 
124
@c man begin SEEALSO
 
125
avconv(1), avplay(1) and the Libav HTML documentation
 
126
@c man end
 
127
 
 
128
@c man begin AUTHORS
 
129
The Libav developers
 
130
@c man end
 
131
 
 
132
@end ignore
 
133
 
 
134
@bye