annotate TOOLS/README @ 15656:845154c7481f

Rephrase vf_fspp parameter description.
author diego
date Sun, 05 Jun 2005 20:16:08 +0000
parents d64f41650916
children e7dcc698718b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
14801
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
1 README for the TOOLS directory
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
2 ==============================
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
3
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
4 Preamble
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
5 --------
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
6
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
7 In this directory you can find some nice scripts and code that makes
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
8 using MPlayer and MEncoder easier, for example scripts for DVD track
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
9 encoding in three pass mode or creating SVCDs from a movie.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
10
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
11 MPlayer scripts in the TOOLS dir
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
12 --------------------------------
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
13
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
14 midentify
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
15
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
16 Author: Tobias Diedrich
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
17
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
18 Description: Runs 'mplayer -identify' for all arguments while preventing
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
19 video window flashing.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
20
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
21 Usage: midentify file1 [file2 ...]
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
22
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
23
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
24 mpconsole
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
25
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
26 Author: Rich Felker
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
27
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
28 Description: Script to run MPlayer on the console (fbdev/mga_vid/etc.) without
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
29 the console text and/or flashing cursor getting in the way.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
30
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
31 Usage: mpconsole [mplayer options]
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
32
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
33
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
34 mplmult.sh
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
35
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
36 Author: Reimar Döffinger
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
37
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
38 Description: Example how to output video on multiple windows in sync. Might
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
39 be even more useful in combination with -vo ggi to distribute
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
40 the video arbitrarily.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
41
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
42 Usage: mplmult.sh <n> <options>
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
43 n number of MPlayer instances that display the video
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
44 options any options you would pass to MPlayer, more than
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
45 one file will usually not work
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
46
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
47
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
48 x2mpsub.sh
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
49
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
50 Author: Gabucino
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
51
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
52 Description: Converts the subtitles in the current directory into MPsub
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
53 format (subtitles go in ./converted-subtitles/).
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
54
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
55 Usage: x2mpsub.sh
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
56
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
57
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
58 mp.pl
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
59
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
60 Author: Felix Bünemann
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
61
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
62 Description: Small helper script that allows to play multiple files with
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
63 MPlayer. Wildcards are supported.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
64
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
65 Usage: mp.pl <parameters> <files>
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
66 Where <parameters> are all possible command line switches
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
67 for MPlayer and <files> can be either a list of files,
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
68 like file1 file2 file3 and/or a wildcard definition,
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
69 like *.avi.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
70
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
71 example: mp.pl -vo x11 /dvd/VIDEO_TS/VTS_05_*.VOB movie.asf
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
72
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
73
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
74 wma2ogg.pl
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
75
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
76 Author: Peter Simon
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
77
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
78 Description: Converts WMA files to Ogg or MP3.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
79
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
80 Usage: wma2ogg [options] <-f FILE1 | -f FILE2 ... | -a>
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
81 -f, -file filename
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
82 -a converts all WMA files in the current directory
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
83 -t output filetype (ogg, mp3) [default=ogg]
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
84 -lame I wanna use L.A.M.E. sure enough!
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
85 -br bitrate (kb/s) [default=from the WMA]
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
86 -del remove WMA file(s) after the transcoding
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
87
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
88
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
89
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
90 MEncoder scripts in the TOOLS dir
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
91 ---------------------------------
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
92
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
93 divx2svcd
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
94
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
95 Author: Miklos Vajna
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
96
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
97 Description: A simple utility that creates an SVCD from a video in an AVI
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
98 container.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
99
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
100 Usage: divx2svcd <input_avi> [options]
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
101 see 'divx2svcd -h' for more info
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
102
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
103
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
104 mencvcd
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
105
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
106 Author: Jürgen Hammelmann
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
107
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
108 Description: Converts DVD (or anything else that MPlayer plays) to (S)VCD
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
109
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
110 Usage: mencvcd <basename> [mencvcd options] [mplayer options]
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
111 see 'mencvcd -h' for more info
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
112
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
113 Note: Requires MPlayer, mjpegtools, VCDImager, cdrdao, and optionally
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
114 LAME, tooLAME and SoX.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
115
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
116
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
117 dvd2divxscript.pl
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
118
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
119 Author: Florian Schilhabel
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
120
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
121 Description: Yet another DVD to divx helper script.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
122 This script encodes a DVD track in three pass mode to MPEG-4 with
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
123 libavcodec. Optionally it writes the resulting movie file to
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
124 CD-ROM the corresponding audio track to MP3. It can also shut
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
125 down the computer when it finishes. If you like, you can
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
126 watch the MEncoder output on /dev/tty8.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
127
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
128 Usage: --help show help
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
129 --abr (AudioBitRate) Please enter the desired bitrate this
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
130 can be either [96|128|192] kbit/sec (default: 128).
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
131 --lang Specify the Language of the audio track this can be
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
132 for example <en> or <de> (default: <de>).
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
133 --dvd Specify the DVD track you want to encode.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
134 --cdsize Specify the size of your CD-ROM (default: 700MB).
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
135 --shutdown Shutdown the system, when the encoding process has
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
136 finished. Needs appropriate privileges.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
137 --out Specify the name of your encoded movie. The file
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
138 extension will be appended automatically.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
139 --writecd Takes the newly created movie and writes it to a
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
140 CD-ROM.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
141 --writedev cdrecord device identifier, for example 0,1,0
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
142 --speed writing speed (default: 4)
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
143 --dvd-device device to pull the video off (default: /dev/dvd)
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
144
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
145
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
146
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
147 Tech scripts in the TOOLS dir
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
148 -----------------------------
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
149
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
150 fastmem.sh
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
151
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
152 Author: Arpi
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
153
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
154 Description: benchmark/testbed for fastmemcpy stuff
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
155
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
156 Usage: fastmem.sh
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
157
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
158
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
159 sws-test
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
160
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
161 Author: Michael Niedermayer
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
162
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
163 Description: Very simple script to generate PNG images from a video with all
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
164 -sws methods.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
165
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
166 Usage: sws-test <video-file> <start-pos> <res>
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
167
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
168 example: sws-test abc.avi 10 160:120
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
169
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
170
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
171 calcbpp.pl
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
172
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
173 Author: Moritz Bunkus
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
174
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
175 Description: A script that calculates the $bpp for a movie, mentioned in
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
176 DOCS/tech/encoding-tips.txt, see that document for more info.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
177
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
178 Usage: calcbpp.pl <resolution> <aspect ratio> <bitrate> <fps>
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
179 resolution: the cropped but unscaled resolution
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
180 (use '-vf cropdetect')
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
181 aspect ratio: the encoded aspect ratio. All DVDs come at
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
182 720x576 but contain a flag that tells the player
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
183 wether it should display the DVD at an aspect
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
184 ratio of 4/3 (1.333) or at 16/9 (1.777). Have a
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
185 look at MPlayer's output - there's something
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
186 about 'prescaling'. That's what you are looking
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
187 for.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
188 bitrate: the video bitrate in kbit/s
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
189 fps: the fps
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
190
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
191 example: calcbpp.pl 720x440 16/9 896 25
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
192
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
193
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
194 countquant.pl
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
195
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
196 Author: Moritz Bunkus
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
197
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
198 Description: Counts the quantizers used for the encoding, mentioned in
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
199 DOCS/tech/encoding-tips.txt, see that document for more info.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
200
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
201 Usage: countquant.pl < divx2pass.log
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
202 It will print out which quantizer was used how often. If you see
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
203 that e.g. the lowest quantizer (vqmin=2) gets used for > 95% of
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
204 the frames then you can safely increase your picture size.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
205
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
206
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
207 perlbench.pl
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
208
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
209 Author: Felix Bünemann
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
210
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
211 Description: fastmemcpy benchmark script
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
212
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
213 Usage: perlbench.pl
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
214
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
215
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
216 plotpsnr.pl
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
217
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
218 Author: Jonas Jermann
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
219
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
220 Description: Draw PSNR log graphs using gnuplot.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
221
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
222 Usage: plotpsnr.pl [options] <file>
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
223 -h, --help Display this help message
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
224 -quant Display quantizers
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
225 -size Display size
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
226 -psnr Display PSNR
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
227 -iframes Display I-frames
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
228 -pframes Display P-frames
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
229 -bframes Display B-frames
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
230 -aframes Display all frames in different colors
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
231 -cmp <file2> Compare two files
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
232 -qs <style> Quantizer style
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
233 -ss <style> Size style
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
234 -ps <style> PSNR style
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
235
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
236 Default: -quant -size -psnr -qs "p" -ss "i" -ps "p"
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
237
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
238 Note: Requires gnuplot. Comparison is based on file2. Comparison
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
239 assumes that the frame numbers of both files fit.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
240
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
241
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
242 asfinfo
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
243
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
244 Author: Arpi
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
245
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
246 Description: a simple ASF header display program
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
247
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
248 Usage: asfinfo <filename.asf>
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
249
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
250 Note: Also see MPlayer's -identify option.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
251
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
252
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
253 avi-fix
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
254
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
255 Author: Arpi
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
256
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
257 Description: A simple tool to fix chunk sizes in RIFF AVI files.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
258
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
259 Usage: avi-fix [-fix] <badfile.avi>
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
260
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
261 Note: It does not check or fix the index, to do this use
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
262 'mencoder -forceidx -oac copy -ovc copy'.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
263
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
264
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
265 bios2dump
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
266
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
267 Author: Nick Kurshev
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
268
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
269 Description: Extract your PC BIOS and save it to file.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
270
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
271 Usage: As argument requires DOS interrupt number in hexadecimal form.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
272 As output - will write 64KB file which will named:
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
273 SSSS_OOOO.intXX
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
274 where: SSSS - segment of BIOS interrupt handler
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
275 OOOO - offset of BIOS interrupt handler
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
276 XX - interrupt number which was passed as argument
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
277
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
278
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
279 cpuinfo
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
280
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
281 Author: Jürgen Keil
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
282
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
283 Description: the prototype ../cpuinfo.c
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
284
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
285 Note: Used by configure to emulate /proc/cpuinfo on non-Linux systems.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
286
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
287
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
288 dump_mp4
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
289
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
290 Author: Arpi
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
291
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
292 Description: MPEG4-ES stream inspector, dumps the stream startcodes.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
293
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
294
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
295 fastmemcpybench
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
296
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
297 Author: Felix Bünemann
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
298
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
299 Description: benchmark/testbed for fastmemcpy stuff
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
300
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
301 Note: Also see fastmem.sh.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
302
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
303
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
304 mem2dump
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
305
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
306 Author: Nick Kurshev
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
307
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
308 Description: Dump memory block to file.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
309
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
310 Usage: As argument requires absolute address of memory dump and its
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
311 length (in hexadecimal form).
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
312 As output - will write file which will be named:
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
313 memADDR_LEN.dump
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
314 where: ADDR - given address of memory
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
315 LEN - given length of memory
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
316
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
317
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
318 movinfo
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
319
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
320 Author: Arpi
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
321
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
322 Description: Show QuickTime MOV file structure.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
323
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
324 Usage: movinfo <filename.mov>
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
325
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
326
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
327 png2raw
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
328
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
329 Author: Arpi
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
330
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
331 Description: PNG to RAW image converter, used by .raw font creators.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
332
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
333 Usage: png2raw <file1> [file2...]
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
334
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
335
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
336 vivodump
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
337
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
338 Author: Arpi
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
339
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
340 Description: Dump H.263 frame headers from VIVO files.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
341
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
342 Usage: vivodump <input_file> <output_file>
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
343
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
344
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
345 Miscellaneous scripts in the TOOLS dir
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
346 --------------------------------------
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
347
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
348 subedit.pl
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
349
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
350 Author: Michael Klepikov
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
351
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
352 Description: A script for pipelined editing of subtitle files.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
353
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
354 Usage: subedit.pl [switches]
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
355 -if,--input-format <fmt> input format; supported: SRT (default: SRT)
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
356 -of,--output-format <fmt> output format; supported: SRT
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
357 (default: input format)
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
358 -s,--shift <time> shift all subtitles by <time>
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
359 (format: [-]hh:mm:ss,fraction)
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
360 -c,--scale <time> scale by adding <time> to overall duration
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
361 -f,--split-from <time> drop subtitles that end before <time>
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
362 -t,--split-to <time> drop subtitles that start after <time> (will
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
363 truncate timing if it overlaps a boundary)
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
364 -r,--renumber renumber SRT subtitles in output
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
365 -d,--debug enable debug output
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
366 -h,--help help message
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
367
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
368
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
369 w32codec_dl.pl
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
370
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
371 Author: Tom Lees
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
372
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
373 Description: This script will use the Windows Media Player codec download
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
374 infrastructure to aquire the codecs listed in codecs.conf and put
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
375 them in a directory named "codecs/" below the current directory.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
376
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
377 Usage: w32codec_dl.pl <codecs.conf location>
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
378
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
379 Note: You will need the libwww-perl stuff and the cabextract utility
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
380 which can be found at http://www.kyz.uklinux.net/cabextract.php3.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
381
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
382
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
383 subrip.c
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
384
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
385 Author: Kim Minh Kaplan
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
386
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
387 Description: Transform VOBsub subtitles into Subrip text subtitles using
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
388 GOCR/JOCR.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
389
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
390 Usage: subrip <vobsub basename> [subid [output filename] ]
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
391
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
392 Note: Requires at least JOCR/GOCR 0.37.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
393 You will have to change the 'vobsub_id' value if you want a
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
394 subtitle different from number 0. Hint: You can view the
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
395 subtitle that is being decoded with "display subtitle-*.pgm".
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
396
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
397
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
398 alaw-gen.c
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
399
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
400 Author: Arpi
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
401
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
402 Description: Generates alaw/ulaw tables.
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
403
d64f41650916 documentation for the tools in the TOOLS directory
diego
parents:
diff changeset
404 Note: Created to work around a past license issue, no longer useful.