File: transcode.1.xml

package info (click to toggle)
transcode 3%3A1.1.7-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 11,644 kB
  • sloc: ansic: 116,927; sh: 11,468; xml: 2,849; makefile: 1,891; perl: 1,492; pascal: 526; php: 191; python: 144; sed: 43
file content (2612 lines) | stat: -rw-r--r-- 124,886 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
                   "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd">

<refentry id='transcode'>
    
    <refentryinfo>
        <date>14th July 2008</date>
    </refentryinfo>
    
    <refmeta>
        <refentrytitle>transcode</refentrytitle>
        <manvolnum>1</manvolnum>
        <refmiscinfo class='date'>14th July 2008</refmiscinfo>
        <refmiscinfo class='source'>transcode(1)</refmiscinfo>
    </refmeta>
    
    <refnamediv id='name'>
        <refname>transcode</refname>
        <refpurpose>LINUX video stream processing tool</refpurpose>
    </refnamediv>
    
    <!-- body begins here -->
    <refsynopsisdiv id='synopsis'>
        <cmdsynopsis>
            <command>transcode</command>    
            <arg choice='plain'>
                -i <replaceable>name</replaceable>
            </arg>
            <arg choice='opt'>
                -o <replaceable>name</replaceable>
            </arg>
            <arg choice='opt'>
                -y <replaceable>vmod,amod</replaceable>
            </arg>
            <arg choice='opt'>
                <arg choice='plain'>
                    -w <replaceable>vbitrate</replaceable>
                </arg>
                <arg choice='opt'>
                    <arg choice='plain'>
                        <replaceable>,vkeyframes</replaceable>
                    </arg>
                    <arg choice='opt'>
                        <replaceable>,vcrispness</replaceable>
                    </arg>
                </arg>
            </arg>
            <arg choice='opt'>
                <arg choice='plain'>
                    -a <replaceable>atrack</replaceable>
                </arg>
                <arg choice='opt'>
                    <replaceable>,vtrack</replaceable>
                </arg>
            </arg>
            <arg choice='opt'>
                <arg choice='plain'>
                    -b <replaceable>abitrate</replaceable>
                </arg>
                <arg choice='opt'>
                    <arg choice='plain'>
                        <replaceable>,is_vbr</replaceable>
                    </arg>
                    <arg choice='opt'>
                        <arg choice='plain'>
                            <replaceable>,quality</replaceable>
                        </arg>
                        <arg choice='opt'>
                            <replaceable>,mode</replaceable>
                        </arg>
                    </arg>
                </arg>
            </arg>
            <arg choice='opt'>
                -M <replaceable>demuxer_mode</replaceable>
            </arg>
            <arg choice='opt'>
                -F <replaceable>codec_string</replaceable>
            </arg>
            <arg choice='opt'>
                <arg choice='plain'>
                    <replaceable>other</replaceable>
                </arg>
                <arg choice='plain'>
                    <replaceable>options</replaceable>
                </arg>
            </arg>
        </cmdsynopsis>
    </refsynopsisdiv>
    
    <refsect1 id='quick_summary'>
        <title>Quick Summary</title>
        <para>
            <command>transcode</command> supports a huge range of options, as described in detail in further
            section. Only one option is mandatory: <option>-i name</option>, for supplying the input main
            (video) source. All other options are discretionary and they can be skipped.
            Most commonly needed options are <option>-o</option>, <option>-y</option>, <option>-w</option>, <option>-a</option>, <option>-b</option>,
            <option>-M</option>, <option>-F</option> and a fair number of transcode session needs a little more than
            those. See section below for full description of all transcode options.
            To inspect the properties of a module, such as their parameters or the help text, use the 'tcmodinfo' tool.
        </para>
    </refsect1>
    
    <refsect1 id='description'>
        <title>Description</title>
        <para>
            <command>transcode</command> is a linux text-console utility for video stream
            processing, running on a platform that supports shared libraries and
            threads.
        </para>
        <para>
            It supports a huge range of options, as described in detail in further
            section. Only one option is mandatory: <option>-i name</option>, for supplying the input main
            (video) source. All other options are discretionary and they can be skipped.
            Most commonly needed options are <option>-o</option>, <option>-y</option>, <option>-w</option>, <option>-a</option>, <option>-b</option>,
            <option>-M</option>, <option>-F</option> and a fair number of transcode session needs a little more than
            those. See section below for full description of all transcode options.
        </para>
        <para>
            Decoding and encoding is done by loading modules that are responsible
            for feeding transcode with raw video/audio streams (import modules)
            and encoding the frames (export modules).
        </para>
        <para>
            It supports elementary video and audio frame transformations,
            including de-interlacing or fast resizing of video frames and loading
            of external filters.
        </para>
        <para>
            A number of modules are included to enable import of DVDs on-the-fly,
            MPEG elementary (ES) or program streams (VOB), MPEG video, Digital
            Video (DV), YUV4MPEG streams, NuppelVideo file format, AVI
            based codecs and raw or compressed (pass-through) video
            frames and export modules for writing DivX;-), XviD, DivX
            4.xx/5.xx or uncompressed AVI and raw files with MPEG, AC3
            (pass-through) or PCM audio.
        </para>
        <para>
            Additional export modules to write single frames (PPM) or YUV4MPEG
            streams are available, as well as an interface import module to the
            avifile library.
        </para>
        <para>
            It's modular concept is intended to provide flexibility and easy user
            extensibility to include other video/audio codecs or filetypes. A set
            of tools is included to demux (tcdemux), extract (tcextract) and
            decode (tcdecode) the sources into raw video/audio streams for import,
            probing (tcprobe) and scanning (tcscan) your sources and to enable
            post-processing of AVI files, fixing AVI file header information
            (avifix), merging multiple files (avimerge), splitting large AVI
            files (avisplit) to fit on a CD and avisync to correct
            AV-offsyncs.
        </para>
    </refsect1>
    
    <refsect1 id='options'>
        <title>Options</title>
        <variablelist>
            <varlistentry>
                <term>
                    <option>-A </option>
                </term>
                <listitem>
                    <para>
                        use AC3 as internal audio codec [off]. Only pass-through supported.
                    </para>
                    
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-B </option>
                    <emphasis>n[,m[,M]]</emphasis>
                </term>
                <listitem>
                    <para>
                        resize to height-<emphasis>n</emphasis>*<emphasis>M</emphasis> rows [,width-<emphasis>m</emphasis>*<emphasis>M</emphasis>] columns [off,32]. <emphasis>M</emphasis> must be one of 8, 16 or 32. It makes no difference which M you use. You might look at the <emphasis>fast</emphasis> flag of the <option>-Z</option> option if you don not want to calculate <emphasis>n</emphasis> and <emphasis>m</emphasis> yourself.
                    </para>
                    
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-C </option>
                    <emphasis>mode</emphasis>
                </term>
                <listitem>
                    <para>enable anti-aliasing mode (1-3) [off].</para>
                    <variablelist>
                        <varlistentry>
                            <term>
                                <literal>1</literal>
                            </term>
                            <listitem>
                                <para>de-interlace effects only</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>2</literal>
                            </term>
                            <listitem>
                                <para>resize effects only</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>3</literal>
                            </term>
                            <listitem>
                                <para>process full frame (slow)</para>
                            </listitem>
                        </varlistentry>
                    </variablelist>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-D </option>
                    <emphasis>num</emphasis>
                </term>
                <listitem>
                    <para>sync video start with audio frame num [0].</para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-E </option>
                    <emphasis>r[,b[,c]]</emphasis>
                </term>
                <listitem>
                    <para>
                        audio output samplerate [Hz], bits per sample and channels [as input]. The option "-J resample" must be provided for export modules not capable of re-sampling. Samplerate and bits per sample can be specified as 0 to mean "same as input"; this allows converting from stereo to mono while leaving the other parameters alone (-E 0,0,1).</para>
                    
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-F </option>
                    <emphasis>codec_string</emphasis>
                </term>
                <listitem>
                    <para>
                        encoder parameter strings [module dependent]. The -F parameter has different meanings for different export modules. Those meanings are documented in <emphasis>transcode_export(1)</emphasis> manual page.
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-G </option>
                    <emphasis>val</emphasis>
                </term>
                <listitem>
                    <para>
                        Gamma correction (0.0-10.0) [off]. A value of 1.0 does not change anything. A value lower than 1.0 will make the picture "brighter", a value above 1.0 will make it "darker".
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-H </option>
                    <emphasis>n</emphasis>
                </term>
                <listitem>
                    <para>
                        auto-probe <emphasis>n</emphasis> MB of source (0=disable) default [1]. Use a higher value than the default to detect all subtitles in the VOB.
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-I </option>
                    <emphasis>mode</emphasis>
                </term>
                <listitem>
                    <para>enable de-interlacing mode (1-5) [off].</para>
                    <variablelist>
                        <varlistentry>
                            <term>
                                <literal>1</literal>
                            </term>
                            <listitem>
                                <para>
                                    <emphasis>"interpolate scanlines"</emphasis>
                                    linear interpolation (takes the average of the surronding even rows to determine the odd rows), and copies the even rows as is.
                                </para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>2</literal>
                            </term>
                            <listitem>
                                <para>
                                    <emphasis>"handled by encoder"</emphasis>
                                    tells the encoding code to handle the fact that the frames are interlaced. Most codecs do not handle this.
                                </para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>3</literal>
                            </term>
                            <listitem>
                                <para>
                                    <emphasis>"zoom to full frame"</emphasis>
                                    drops to to half size, then zooms out. This can cause excessive blurring which is not always unwanted. On the other hand results are quite good.
                                </para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>4</literal>
                            </term>
                            <listitem>
                                <para>
                                    <emphasis>"drop field / half height"</emphasis>
                                    drop every other field and keep half height.
                                </para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>5</literal>
                            </term>
                            <listitem>
                                <para>
                                    <emphasis>"interpolate scanlines / blend frames"</emphasis>
                                    linear blend (similar to -vop pp=lb in mplayer) this, like linear blend calculates the odd rows as the average of the surrounding even rows, and also calculates the even rows as an average of the original even rows and also calculates the even rows as an average of the original odd rows and averages the calculated and original rows. Something like avg (avg(row1,row3), avg(row2, row4))
                                </para>
                            </listitem>
                        </varlistentry>
                    </variablelist>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-J </option>
                    <emphasis>filter1[,filter2[,...]]</emphasis>
                </term>
                <listitem>
                    <para>
                        apply external filter plugins [off]. The avalaible import modules and their options are documented into the <emphasis>transcode_filter(1)</emphasis> manual page. <emphasis>Note:</emphasis> You can specify more than one -J argument. The order of filter arguments specify in which order the filters are applied. Note also, for transcode internally it makes no difference whether you do "-J filter1 -J filter2" or "-J filter1,filter2". Use 'tcmodinfo -i <emphasis>NAME</emphasis>' to get more information about the filter_<emphasis>NAME</emphasis>. Not all filters support this but most of them do. Some of the filter plugins have additional documentation in the docs/ directory.
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-L </option>
                    <emphasis>n</emphasis>
                </term>
                <listitem>
                    <para>
                        seek to VOB stream offset <emphasis>n</emphasis>x2kB default [0]. This option is usually calculated automatically when giving --nav_seek and -c.
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-K </option>
                </term>
                <listitem>
                    <para>
                        enable black/white by removing colors mode (grayscale) [off]. Please note this does not necessarily lead to a smaller image / better compression. For YUV mode, this is done by emptying the chroma planes, for RGB mode a weightend grayscale value is computed.
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-M </option>
                    <emphasis>mode</emphasis>
                </term>
                <listitem>
                    <para>demuxer PES AV sync modes (0-4) [1].</para>
                    
                    <variablelist>
                        <varlistentry>
                            <term>
                                <emphasis>Overview</emphasis>
                            </term>
                            <listitem>
                                <para>
                                    The demuxer takes care that the right video frames go together with the right audio frame. This can sometimes be a complex task and transcode tries to aid you as much as possible. <emphasis>WARNING:</emphasis> It does make a difference if you (the user) specifies a demuxer to use or if transcode resp. tcprobe(1) chooses the one which it thinks is right for your material. This is done on purpose to avoid mystic side-effects. So think twice, wether you specify a demuxer or let transcode choose one or you might end up with an off-sync result.
                                </para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>0</literal>
                            </term>
                            <listitem>
                                <para>
                                    Pass-through. Do not mess with the stream, switch off any synchronization/demuxing process.
                                </para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>1</literal>
                            </term>
                            <listitem>
                                <para>
                                    PTS only (default). Synchronize video and audio by inspecting PTS/DTS time stamps of audio and
                                    video. Preferred mode for PAL VOB streams and DVDs.
                                </para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>2</literal>
                            </term>
                            <listitem>
                                <para>
                                    NTSC VOB stream synchronization feature. This mode generates synchronization information for transcode by analyzing the frame display time.
                                </para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>3</literal>
                            </term>
                            <listitem>
                                <para>
                                    (like -M 1): sync AV at initial PTS, but invokes "-D/--av_fine_ms" options internally based on "tcprobe" PTS analysis. PTS stands for Presentation Time Stamp.
                                </para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>4</literal>
                            </term>
                            <listitem>
                                <para>
                                    (like -M 2): initial PTS / enforce frame rate, with additional frame rate enforcement (for NTSC).
                                </para>
                            </listitem>
                        </varlistentry>
                    </variablelist>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-N </option>
                    <emphasis>format</emphasis>
                </term>
                <listitem>
                    <para>
                        select export format. Default is mp3 for audio, and module-dependant format for video. This option has two different behaviours and accepts two different set of options, as side-effect of ongoing export module transition. For old-style modules (current default, as found in 1.0.x series), argument is audio format ID has hexadecimal value: see below for a list of recognized IDs. Default id, so default format for audio exported track, is MP3 (0x55). If you are using, the transcode's the new-style encode/multiplex modules (still under development, see the encode and multiplex directories), argument is a comma-separated pair of export format names. Use tcmodinfo tool to check out what new-style export module support what formats.
                    </para>
                    <para>Available format for old-style behaviour are:</para>
                    <variablelist>
                        <varlistentry>
                            <term>
                                <emphasis>0x1</emphasis>
                            </term>
                            <listitem>
                                <para>PCM uncompressed audio</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <emphasis>0x50</emphasis>
                            </term>
                            <listitem>
                                <para>MPEG layer-2 aka MP2</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <emphasis>0x55</emphasis>
                            </term>
                            <listitem>
                                <para>
                                    MPEG layer-3 aka MP3. Also have a look at --lame_preset
                                    if you intend to do VBR audio.</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <emphasis>0x2000</emphasis>
                            </term>
                            <listitem>
                                <para>AC3 audio</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <emphasis>0xfffe</emphasis>
                            </term>
                            <listitem>
                                <para>OGG/Vorbis audio</para>
                            </listitem>
                        </varlistentry>
                    </variablelist>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-O </option>
                </term>
                <listitem>
                    <para>skip flushing of buffers at encoder stop [off, do flushing at each stop].</para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-P </option>
                    <emphasis>flag</emphasis>
                </term>
                <listitem>
                    <para>
                        pass-through flag (0=off|1=V|2=A|3=A+V) [0]. Pass-through for <emphasis>flag</emphasis> != 1 is broken and not a trivial thing to fix.
                    </para>
                    <para>
                        You can pass-through DV video, AVI files and MPEG2 video. When doing MPEG2 pass-through (together with the -y raw module), you can give a requantization factor by using -w (for example -w 1.5), this will make the MPEG2 stream smaller.
                    </para>
                    <para>
                        The pass-through mode is useful for reconstruction of a broken index of an AVI file. The -x ffmpeg import-module analyzes the compressed bitstream and can detect a keyframe for DIV3, MPEG4 (DivX, XviD, ..) and other formats. It then sets an internal flag which the export module will respect when writing the frame out.
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-Q </option>
                    <emphasis>n[,m]</emphasis>
                </term>
                <listitem>
                    <para>encoding[,decoding] quality (0=fastest-5=best) [5,5].</para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-R </option>
                    <emphasis>n[,f1[,f2]]</emphasis>
                </term>
                <listitem>
                    <para>enable multi-pass encoding (0-3) [0,divx4.log,pcm.log].</para>
                    <variablelist>
                        <varlistentry>
                            <term>
                                <literal>0</literal> Constant bitrate (CBR) encoding. [default]
                            </term>
                            <listitem>
                                <para>
                                    The codec tries to achieve constant bitrate output. This means, each encoded frame is mostly the same size. This type of encoding can help in maintaining constant filling of hardware buffer on set top players or smooth streaming over networks. By the way, Constant bitrate is often obtained sacrifying quality during high motion scenes.
                                </para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>1</literal> Variable bitrate encoding: First pass.
                            </term>
                            <listitem>
                                <para>
                                    In this mode, the codec analyses the complete sequence in order to collect data that can improve the distribution of bits in a second VBR pass. The collected data is written to second sub argument (default: divx4.log). This data is codec dependant and cannot be used across codecs. It is strongly advised to use the same codec settings for the VBR analysis pass and the VBR encoding pass if you want predictable results.
                                </para>
                                <para>
                                    The video output of the first pass is not of much use and can grow very large. It's a good idea to not save the video output to a file but directly to /dev/null. Usually the bitrate is ignored during first pass.
                                </para>
                                <para>
                                    Disabling audio export makes sense too, so use -y codec,null. It is <emphasis>not</emphasis> recommended to disable the audio <emphasis>import</emphasis> because transcode might drop video frames to keep audio and video in sync. This is not possible when the audio import is disabled. It may lead to the fact that the codec will see a different sequence of frames which effectively renders the log file invalid.
                                </para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>2</literal> Variable bitrate encoding: Second pass.
                            </term>
                            <listitem>
                                <para>
                                    The first pass allowed the codec collecting data about the complete sequence. During the second pass, the codec will use that data in order to find an efficient bit distribution that respects both the desired bitrate and the natural bitrate curve shape. This ensures a good compromise between quality and desired bitrate.
                                </para>
                                <para>
                                    Make sure you activate both sound and video encoding during this pass.
                                </para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>3</literal> Constant quantizer encoding.
                            </term>
                            <listitem>
                                <para>
                                    The quantizer is the "compression level" of the picture. The lower the quantizer is, the higher is the quality of the picture. This mode can help in making sure the sequence is encoded at constant quality, but no prediction can be made on the final bitrate. When using this mode, the <option>-w</option> option changes its meaning, it now takes the quantizer ranging from 1 to 31. Note that constant quantizer encoding is not supported with some codecs (notably mpeg1/2/4 with -y ffmpeg).
                                </para>
                            </listitem>
                        </varlistentry>
                    </variablelist>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-S </option>
                    <emphasis>unit[,s1-s2]</emphasis>
                </term>
                <listitem>
                    <para>
                        process program stream unit[,s1-s2] sequences [0,all]. This option is a bit redundant to --psu*. This option lets you specify which units you want to have decoded or skipped. At a program stream unit boundary, all (internal) mpeg timers are reset to 0. tcprobe will tell you how many units are in one file.
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-T </option>
                    <emphasis>t[,c[,a]]</emphasis>
                </term>
                <listitem>
                    <para>
                        select DVD title[,chapter[,angle]] [1,1,1]. Only a single chapter is transcoded. Use <option>-T</option> 1,-1 to trancode all chapters in a row. You can even specify chapter ranges.
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-U </option>
                    <emphasis>base</emphasis>
                </term>
                <listitem>
                    <para>process DVD in chapter mode to base-ch%02d.avi [off].</para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-V </option>
                    <emphasis>format</emphasis>
                </term>
                <listitem>
                    <para>
                        select video layout / colour space for internal processing. Possible values for this options are: yuv420p (default), yuv422p, rgb24
                    </para>
                    <para>
                        yuv420p is default because it is most codecs' internal format so there is no need for conversions. Some modules may not support it though: use rgb in that case.
                    </para>
                    <para>
                        rgb24 is the old (pre-0.6.13) transcode internal format. Most codecs do not support this format natively and have to convert it to/from YUV first, so only use this option if you're really sure or you want to use a module that doesn't support YUV.
                    </para>
                    <para>
                        yuv422p is an experimental feature and a developers playground. Not many import, export and filter modules support this colorspace. A 4:2:2 colorspace offers much more quality than the consumer oriented 4:2:0 colorspaces like I420/YV12. Most equipment in film and video post-production uses YUV422. YUV422 doubles the precision for chroma (color difference) information in the image.
                    </para>
                    <para>
                        All internal transformations are supported in YUV422 mode (clipping, flipping, zooming, etc).
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-W </option>
                    <emphasis>n,m[,nav_file]</emphasis>
                </term>
                <listitem>
                    <para>
                        autosplit and process part <emphasis>n</emphasis> of <emphasis>m</emphasis> (VOB only) [off]
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-X </option>
                    <emphasis>n[,m,[M]]</emphasis>
                </term>
                <listitem>
                    <para>
                        resize to height+<emphasis>n</emphasis>*<emphasis>M</emphasis> rows [,width+<emphasis>m</emphasis>*<emphasis>M</emphasis>] columns [off,32]. M must be one of 8, 16 or 32. It makes no difference which M you use. You might look at the <emphasis>fast</emphasis> flag of the <option>-Z</option> option if you do not want to calculate <emphasis>n</emphasis> and <emphasis>m</emphasis> yourself.
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-Y </option>
                    <emphasis>top[,left[,bottom[,right]]]</emphasis>
                </term>
                <listitem>
                    <para>
                        select (encoder) frame region by clipping border. Negative values add a border [off].
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-Z </option>
                    <emphasis>widthxheight[,fast|interlaced]</emphasis>
                </term>
                <listitem>
                    <para>
                        resize to <emphasis>width</emphasis> columns, <emphasis>height</emphasis> rows with filtering [off,notfast,notinterlaced]. If <emphasis>fast</emphasis> is given, transcode will calculate the parameters for <option>-X</option> and/or <option>-B</option>. The file <option>fast</option> can only be used when the import and export geometry of an image is a multiple of 8.
                    </para>
                    <para>
                        In fast mode, a faster but less precise resizing algorithm will be used resulting in a slightly less good quality. Beside this (small) drawback, it is worth a try.
                    </para>
                    <para>
                        If <emphasis>interlaced</emphasis> is given, transcode will assume the frame is interlaced when resizing, and resize each field independently. This will give better results on interlaced video, but is incompatible with fast mode. Also, the height (both old and new) must be a multiple of 4.
                    </para>
                    <para>
                        It is also possible to omit <emphasis>width</emphasis> OR <emphasis>height</emphasis>. In this case, transcode will calculate the missing value using the import aspect ratio. The new value will be aligned to be a multiple of 8. Using an additional <emphasis>fast</emphasis> or <emphasis>interlaced</emphasis> is also possible.
                    </para>
                    <para>Examples (assume input is a 16:9 coded file at 720x576):</para>
                    <literallayout>
                        -Z 576x328           uses filtered zoom.
                        -Z 576x328,fast      uses fast zoom.
                        -Z 576x,fast         guess 328 and do fast zoom.
                        -Z x328,interlaced   guess 576 and do interlaced zoom.
                    </literallayout>
                    <para>
                        If you also set <option>--export_prof</option>, you can use just "fast" to indicate that fast resizing is wanted (likewise with "interlaced").
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-a </option>
                    <emphasis>ach[,vch]</emphasis>
                </term>
                <listitem>
                    <para>extract audio[,video] track for encoding.</para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-b </option>
                    <emphasis>b[,v,[q,[m]]]</emphasis>
                </term>
                <listitem>
                    <para>audio encoder bitrate kBits/s[,vbr[,quality[,mode]]] [128,0,5,0]</para>
                    <para>
                        The <emphasis>mode</emphasis> parameter specifies which modus lame should use for encoding. Available modes are:
                    </para>
                    <variablelist>
                        <varlistentry>
                            <term>
                                <literal>0</literal>
                            </term>
                            <listitem>
                                <para>Joint Stereo (default)</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>1</literal>
                            </term>
                            <listitem>
                                <para>Full stereo</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>2</literal>
                            </term>
                            <listitem>
                                <para>Mono</para>
                            </listitem>
                        </varlistentry>
                    </variablelist>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-c </option>
                    <emphasis>f1-f2[,f3-f4[, ... ] ]</emphasis>
                </term>
                <listitem>
                    <para>
                        encode only frames <emphasis>f1-f2</emphasis> [and <emphasis>f3-f4</emphasis>]. Default is to encode all available frames.  Use this and you'll get statistics about remaining encoding time. The <emphasis>f[N]</emphasis> parameters may also be timecodes in the HH:MM:SS.FRAME format. Example:
                    </para>
                    <literallayout>
                        -c 500-0:5:01,:10:20-1:18:02.1
                    </literallayout>
                     <para>
                         Will encode only from frame 500 to 5 minutes and 1 second and from 10 min, 20 sec to 1 hour, 18 min, 2 sec and one frame.
                     </para>
                     <para>
                         Note that transcode starts counting frames at <literal>0</literal> and excludes the last frame specified. That means that "<option>-c</option> 0-100" will encoded 100 frames starting at frame <literal>0</literal> up to frame <literal>99</literal>
                     </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-d </option>
                </term>
                <listitem>
                    <para>
                        swap bytes in audio stream [off]. In most cases, DVD PCM audio tracks require swapping of audio bytes
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-e </option>
                    <emphasis>r[,b[,c]]</emphasis>
                </term>
                <listitem>
                    <para>
                        PCM audio stream parameter. Sample rate [Hz], bits per sample and number of channels [48000,16,2]. Normally this is autodetected.
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-f </option>
                    <emphasis>rate[,frc]</emphasis>
                </term>
                <listitem>
                    <para>
                        import video frame rate[,frc] [25.000,0]. If <emphasis>frc</emphasis> (frame rate code) is specified, transcode will calculate the precise frames per second internally. Valid values for <emphasis>frc</emphasis> are:
                    </para>
                    <variablelist>
                        <varlistentry>
                            <term>
                                <literal>1</literal>
                            </term>
                            <listitem>
                                <para>23.976 (24000/1001.0)</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>2</literal>
                            </term>
                            <listitem>
                                <para>24</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>3</literal>
                            </term>
                            <listitem>
                                <para>25</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>4</literal>
                            </term>
                            <listitem>
                                <para>29.970 (30000/1001.0)</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>5</literal>
                            </term>
                            <listitem>
                                <para>30</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>6</literal>
                            </term>
                            <listitem>
                                <para>50</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>7</literal>
                            </term>
                            <listitem>
                                <para>59.940 (2 * 29.970)</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>8</literal>
                            </term>
                            <listitem>
                                <para>60</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>9</literal>
                            </term>
                            <listitem>
                                <para>1</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>10</literal>
                            </term>
                            <listitem>
                                <para>5</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>11</literal>
                            </term>
                            <listitem>
                                <para>10</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>12</literal>
                            </term>
                            <listitem>
                                <para>12</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>13</literal>
                            </term>
                            <listitem>
                                <para>15</para>
                            </listitem>
                        </varlistentry>
                    </variablelist>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-g </option>
                    <emphasis>WidthxHeight</emphasis>
                </term>
                <listitem>
                    <para>video stream frame size [720x576].</para>
                    
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-h</option>
                </term>
                <listitem>
                    <para>print out usage information.</para>
                    
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-i </option>
                    <emphasis>name</emphasis>
                </term>
                <listitem>
                    <para>input file/directory/device/mountpoint/host name, default is [/dev/zero].</para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-j </option>
                    <emphasis>top[,left[,bottom[,right]]]</emphasis>
                </term>
                <listitem>
                    <para>select frame region by clipping border. Negative values add a border [off].</para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-k </option>
                </term>
                <listitem>
                    <para>swap red/blue (Cb/Cr) in video frame [off]. Use if people have blue faces.</para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-l </option>
                </term>
                <listitem>
                    <para>mirror video frame [off].</para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-m </option>
                    <emphasis>file</emphasis>
                </term>
                <listitem>
                    <para>write audio stream to separate file [off].</para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-n </option>
                    <emphasis>0xnn</emphasis>
                </term>
                <listitem>
                    <para>import audio format id [0x2000]. Normally, this is autodetected.</para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-o </option>
                    <emphasis>file</emphasis>
                </term>
                <listitem>
                    <para>output file name, default is [/dev/null].</para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-p </option>
                    <emphasis>file</emphasis>
                </term>
                <listitem>
                    <para>read audio stream from separate file [off].</para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-q </option>
                    <emphasis>debuglevel</emphasis>
                </term>
                <listitem>
                    <para>possible values for debuglevel:</para>
                    <variablelist>
                        <varlistentry>
                            <term>
                                <literal>0</literal>
                            </term>
                            <listitem>
                                <para>QUIET</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>1</literal>
                            </term>
                            <listitem>
                                <para>INFO</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>2</literal>
                            </term>
                            <listitem>
                                <para>DEBUG</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>4</literal>
                            </term>
                            <listitem>
                                <para>STATS</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>8</literal>
                            </term>
                            <listitem>
                                <para>WATCH</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>16</literal>
                            </term>
                            <listitem>
                                <para>FLIST</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>32</literal>
                            </term>
                            <listitem>
                                <para>VIDCORE</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>64</literal>
                            </term>
                            <listitem>
                                <para>SYNC</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>128</literal>
                            </term>
                            <listitem>
                                <para>COUNTER</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>256</literal>
                            </term>
                            <listitem>
                                <para>PRIVATE</para>
                            </listitem>
                        </varlistentry>
                    </variablelist>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-r </option>
                    <emphasis>n[,m]</emphasis>
                </term>
                <listitem>
                    <para>
                        reduce video height/width by n[,m] [off]. Example: <option>-r</option> 2 will rescale the framesize of a 720x576 file to 360x288.
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-s </option>
                    <emphasis>gain,[center,[front,[rear]]]</emphasis>
                </term>
                <listitem>
                    <para>
                        increase volume of audio stream by gain,[center,front,rear] default [off,1,1,1].
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-t </option>
                    <emphasis>n,base</emphasis>
                </term>
                <listitem>
                    <para>
                        split output to <emphasis>base</emphasis>%03d.avi with <emphasis>n</emphasis> frames [off].
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-u </option>
                    <emphasis>m[,n]</emphasis>
                </term>
                <listitem>
                    <para>
                        use <emphasis>m</emphasis> framebuffer[,<emphasis>n</emphasis> threads] for AV processing [10,1].
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-v </option>
                </term>
                <listitem>
                    <para>print version.</para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-w </option>
                    <emphasis>b[,k[,c]]</emphasis>
                </term>
                <listitem>
                    <para>
                        encoder bitrate[,keyframes[,crispness]] [(6000 for MPEG 1/2, 1800 for others),250,100].
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--video_max_bitrate </option>
                    <emphasis>b</emphasis>
                </term>
                <listitem>
                    <para>
                        Use <emphasis>b</emphasis> as maximal bitrate (kbps) when encoding variable bitrate streams.
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-x </option>
                    <emphasis>vmod[,amod]</emphasis>
                </term>
                <listitem>
                    <para>
                        video[,audio] import modules [auto,auto]. If omitted, transcode will probefor appropriate import modules. The avalaible import modules and their options are documented into the <emphasis>transcode_import(1)</emphasis> manual page.
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>-y </option>
                    <emphasis>vmod[,amod[,mmod]]</emphasis>
                </term>
                <listitem>
                    <para>
                        video[,audio[,multiplex]] export modules [null].  If omitted, transcode will encode to the <emphasis>null</emphasis> module.  If a multiplex module is given, transcode will use the new-style encode/multiplex modules (still under development, see the encode and multiplex directories); if no multiplex module is given, the traditional export modules will be used. The avalaible export, encoder and multiplexor modules and their options are documented into the <emphasis>transcode_export(1)</emphasis> manual page.
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--accel </option>
                    <emphasis>type</emphasis>
                </term>
                <listitem>
                    <para>
                        enforce experimental IA32 acceleration for type [autodetect]. <emphasis>type</emphasis> may be one of
                    </para>
                    <variablelist>
                        <varlistentry>
                            <term>
                                <emphasis>C</emphasis>
                            </term>
                            <listitem>
                                <para>No acceleration</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <emphasis>ia32asm</emphasis>
                            </term>
                            <listitem>
                                <para>plain x86 assembly</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <emphasis>mmx</emphasis>
                            </term>
                            <listitem>
                                <para>MMX instruction set</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <emphasis>3dnow</emphasis>
                            </term>
                            <listitem>
                                <para>3DNow! instruction set</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <emphasis>sse</emphasis>
                            </term>
                            <listitem>
                                <para>SSE instruction set</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <emphasis>sse2</emphasis>
                            </term>
                            <listitem>
                                <para>SSE2 instruction set</para>
                            </listitem>
                        </varlistentry>
                    </variablelist>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--avi_limit </option><emphasis>N</emphasis><emphasis></emphasis>
                </term>
                <listitem>
                    <para>split/rotate output AVI file after N MB [2048].</para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--avi_comments </option>
                    <emphasis>F</emphasis>
                </term>
                <listitem>
                    <para>
                        Read AVI header comments from file <filename>F</filename> [off]. The AVI file format supports so-called tomb-stone data. It can be used to write annotations into the AVI file.
                    </para>
                    <para>
                        See the file <filename>docs/avi_comments.txt</filename> for a sample input file with all tags. When the file is read, empty lines and lines starting with '#' are ignored. The syntax is: "TAG&lt;space&gt;STRING". The order of the tags does not matter. If a tag has no string following it, it is ignored. That means, you can use the file docs/avi_comments.txt as input and only fill out the fields you want.
                    </para>
                    <para>A very simple example is:</para>
                    <literallayout>
                        ----------------snip----------------
                        INAM My 1st Birthday
                        ISBJ My first steps!
                        IART My proud family
                        ----------------snip----------------
                    </literallayout>
                    <para>
                        Keep in mind that there is no endless space in the AVI header, most likely its around 1000 bytes.
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--zoom_filter </option>
                    <emphasis>string</emphasis>
                </term>
                <listitem>
                    <para>
                        use filter string for video resampling <option>-Z</option> [Lanczos3] The following filters are available:
                    </para>
                    <variablelist>
                        <varlistentry>
                            <term>Bell</term>
                            <listitem><para></para></listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>Box</term>
                            <listitem><para></para></listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>Lanczos3 (default)</term>
                            <listitem><para></para></listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>Mitchell</term>
                            <listitem><para></para></listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>Hermite</term>
                            <listitem><para></para></listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>B_spline</term>
                            <listitem><para></para></listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>Triangle</term>
                            <listitem><para></para></listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>Cubic_Keys4</term>
                            <listitem><para></para></listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>Sinc8</term>
                            <listitem><para></para></listitem>
                        </varlistentry>
                    </variablelist>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--cluster_percentage </option>
                </term>
                <listitem>
                    <para>use percentage mode for cluster encoding <option>-W</option>> [off]</para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--cluster_chunks </option>
                    <emphasis>a-b</emphasis>
                </term>
                <listitem>
                    <para>process chunk range instead of selected chunk [off]</para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--export_asr </option>
                    <emphasis>C</emphasis>
                </term>
                <listitem>
                    <para>
                        set export aspect ratio code <emphasis>C</emphasis> [as input] Valid codes for <emphasis>C</emphasis> are:
                    </para>
                    <variablelist>
                        <varlistentry>
                            <term>
                                <literal>1</literal>
                            </term>
                            <listitem>
                                <para>1:1</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>2</literal>
                            </term>
                            <listitem>
                                <para>4:3</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>3</literal>
                            </term>
                            <listitem>
                                <para>16:9</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>4</literal>
                            </term>
                            <listitem>
                                <para>2.21:1</para>
                            </listitem>
                        </varlistentry>
                    </variablelist>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--export_prof </option>
                    <emphasis>S</emphasis>
                </term>
                <listitem>
                    <para>
                        WARNING: this option will be renamed as <option>--export_profile</option> in future releases.
                    </para>
                    <para>
                        Select an export profile {vcd, svcd, xvcd, dvd} [-pal|-ntsc|-secam]. Default is no profile.
                    </para>
                    <para>
                        If you set this meta option to one of the values below, transcode will adjust some internal paramaters as well as geometry and clipping. If no export modules are specified, mpeg2enc for video and mp2enc for audio are used when compiled with mjpegtools support.
                    </para>
                    <para>
                        Valid values for <emphasis>S</emphasis> are e.g. vcd, vcd-pal, vcd-ntsc, svcd, svcd-pal, ...
                    </para>
                    <para>
                        xvcd profile is equal to svcd except that it allows for up to 9000 Kbps video bitrate (default is 5000) and arbitrary audio samplerate.
                    </para>
                    <para>
                        When one of the above is used, transcode will calculate the needed clipping and resizing values for you based on the import and export aspect ratio. This is especially handy if you want to encode a 16:9 DVD into a 4:3 SVCD for example. Transcode internally then sets --pre_clip to add the black bars ("letterboxing").
                    </para>
                    <para>
                        If you use "vcd" instead of "vcd-pal" or "vcd-ntsc", transcode will make an educated guess if PAL or NTSC vcd is wanted. The same is true for the other profiles. When the input file has no aspect ratio information at all, transcode guesses it based on the import frame sizes. You can set the import aspect ratio by giving <option>--import_asr</option> CODE.
                    </para>
                    <para>Examples (assume input is a 16:9 coded file at 720x576 (PAL)):</para>
                    <literallayout>
                        --export_prof svcd      clip top/bot -96; resizes to 480x576
                        --export_prof vcd-ntsc  clip top/bot -96; resizes to 352x240
                    </literallayout>
                    <para>
                        This enables simpilified commandlines where transcode tries to set sensible values for mpeg export. When you don't specify an export module with -y, mpeg2enc will be used.
                    </para>
                    <literallayout>
                        transcode -i vob/ --export_prof svcd -Z fast -o test
                    </literallayout>
                    <para>
                        The ffmpeg export module `-y ffmpeg' does support profiles as well. The module tries to be smart and sets internal ffmpeg parameters which are otherwise quite tricky to find out. Usage is similar to the above.
                    </para>
                    <literallayout>
                        transcode -i vob/ --export_prof dvd -y ffmpeg -o test -m test.ac3
                        tcmplex -m d -i test.m2v -p test.ac3 -o test.mpg
                    </literallayout>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--export_par </option>
                    <emphasis>C[,N]</emphasis>
                </term>
                <listitem>
                    <para>
                        set export pixel aspect ratio to <emphasis>C</emphasis>[,<emphasis>N</emphasis>]. To encode anamorphic material, transcode can encode the target pixel aspect ratio into the file. This is NOT the actual aspect ratio of the image, but only the amount by which every single pixel is stretched when played with an aspect ratio aware application, like mplayer.
                    </para>
                    <para>
                        To encode at non standard aspect ratios, set both <emphasis>C</emphasis> and <emphasis>N</emphasis>. E.g. to make every pixel twice as high as it's wide (e.g. to scale back to normal size after deinterlacing by dropping every second line).
                    </para>
                    <para>
                        If <emphasis>C</emphasis> and <emphasis>N</emphasis> are specified, the value set for <emphasis>C</emphasis> does give the pixel aspect ratio of the width and <emphasis>N</emphasis> the one for the height. If only <emphasis>C</emphasis> is specified, the table below applies.
                    </para>
                    <para>Valid codes for <emphasis>C</emphasis> are</para>
                    <variablelist>
                        <varlistentry>
                            <term>
                                <literal>1</literal>
                            </term>
                            <listitem>
                                <para>1:1   No stretching</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>2</literal>
                            </term>
                            <listitem>
                                <para>12:11 5:4 image to 4:3  (ex: 720x576 -&gt;  768x576)</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>3</literal>
                            </term>
                            <listitem>
                                <para>10:11 3:2 image to 4:3  (ex: 720x480 -&gt;  640x480)</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>4</literal>
                            </term>
                            <listitem>
                                <para>16:11 5:4 image to 16:9 (ex: 720x576 -&gt; 1024x576)</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>5</literal>
                            </term>
                            <listitem>
                                <para>40:33 3:2 image to 16:9 (ex: 720x480 -&gt;  872x480)</para>
                            </listitem>
                        </varlistentry>
                    </variablelist>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--import_asr </option>
                    <emphasis>C</emphasis>
                </term>
                <listitem>
                    <para>
                        set import aspect ratio code <emphasis>C</emphasis> [autoprobed]
                    </para>
                    <para>Valid codes for <emphasis>C</emphasis> are</para>
                    <variablelist>
                        <varlistentry>
                            <term>
                                <literal>1</literal>
                            </term>
                            <listitem>
                                <para>1:1</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>2</literal>
                            </term>
                            <listitem>
                                <para>4:3</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>3</literal>
                            </term>
                            <listitem>
                                <para>16:9</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>4</literal>
                            </term>
                            <listitem>
                                <para>2.21:1</para>
                            </listitem>
                        </varlistentry>
                    </variablelist>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--keep_asr </option>
                </term>
                <listitem>
                    <para>try to keep aspect ratio (only with -Z) [off]</para>
                    <para>
                        The <option>--keep_asr</option> options changes the meaning of <option>-Z</option>. It tries to fit the video into a framesize specified by <option>-Z</option> by keeping the <emphasis>original</emphasis> aspect ratio.
                    </para>
                    <literallayout>
                        +----------------+                            +---480-----+
                        |                |                            | black     |
                        |720x306 = 2.35:1| -&gt; -Z 480x480 --keep_asr -&gt;|-----------4
                        |                |                            | 480x204   8
                        +----------------+                            |-----------0
                        | black     |
                        +-----------+
                    </literallayout>
                    <para>
                        Consider <option>--keep_asr</option> a wrapper for calculating <option>-Y</option> options and <option>-Z</option> options.
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--mplayer_probe </option>
                </term>
                <listitem>
                    <para>
                        use external mplayer binary to probe stream, reset default import modules as mplayer ones [off]. Default is to use internal probing code. Using this option without mplayer import modules (<option>-x</option> mplayer) can lead to unpredictable and possibly wrong results.
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--quantizers </option>
                    <emphasis>min,max</emphasis>
                </term>
                <listitem>
                    <para>
                        set encoder min/max quantizer. This is meaningfull only for video codecs of MPEG family. For other kind of codecs, this options is harmless. [2,31]
                    </para>
                    
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--divx_rc </option>
                    <emphasis>p,rp,rr</emphasis>
                </term>
                <listitem>
                    <para>divx encoder rate control parameter [2000,10,20]</para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--divx_vbv_prof </option>
                    <emphasis>N</emphasis>
                </term>
                <listitem>
                    <para>
                        divx5 encoder VBV profile (0=free-5=hiqhq) [3]. Sets a predefined profile for the Video Bitrate Verifier. If <emphasis>N</emphasis> is set to zero, no profile is applied and the user specified values from <option>--divx_vbv</option> are used.
                    </para>
                    <para>Valid profiles</para>
                    <variablelist>
                        <varlistentry>
                            <term>
                                <literal>0</literal>
                            </term>
                            <listitem>
                                <para>Free/No profile   ( Use supplied values )</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>1</literal>
                            </term>
                            <listitem>
                                <para>Handheld  ( 320, 16, 3072 )</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>2</literal>
                            </term>
                            <listitem>
                                <para>Portable  ( 1920, 64, 12288 )</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>3</literal>
                            </term>
                            <listitem>
                                <para>Home Theatre  ( 10000, 192, 36864 )</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>4</literal>
                            </term>
                            <listitem>
                                <para>High Definition   ( 20000, 384, 73728 )</para>
                            </listitem>
                        </varlistentry>
                    </variablelist>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--divx_vbv </option>
                    <emphasis>br,sz,oc</emphasis>
                </term>
                <listitem>
                    <para>
                        divx5 encoder VBV params (bitrate,size,occup.) [10000,192,36864] These parameters are normally set through the profile parameter <option>--divx_vbv_prof</option>. Do not mess with theses value unless you are absolutely sure of what you are doing. Transcode internally multiplicates vbv_bitrate with 400, vbv_size with 16384 and vbv_occupancy with 64 to ensure the supplied values are multiples of what the encoder library wants.
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--export_fps </option>
                    <emphasis>rate[,frc]</emphasis>
                </term>
                <listitem>
                    <para>set export frame rate (and code) [as input].Valid values
                        for <emphasis>frc</emphasis> are
                    </para>
                    <para>frc rate</para>
                    <variablelist>
                        <varlistentry>
                            <term>
                                <literal>1</literal>
                            </term>
                            <listitem>
                                <para>23.976    (24000/1001.0)</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>2</literal>
                            </term>
                            <listitem>
                                <para>24</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>3</literal>
                            </term>
                            <listitem>
                                <para>25</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>4</literal>
                            </term>
                            <listitem>
                                <para>29.970    (30000/1001.0)</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>5</literal>
                            </term>
                            <listitem>
                                <para>30</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>6</literal>
                            </term>
                            <listitem>
                                <para>50</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>7</literal>
                            </term>
                            <listitem>
                                <para>59.940    (2 * 29.970)</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>8</literal>
                            </term>
                            <listitem>
                                <para>60</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>9</literal>
                            </term>
                            <listitem>
                                <para>1</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>10</literal>
                            </term>
                            <listitem>
                                <para>5</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>11</literal>
                            </term>
                            <listitem>
                                <para>10</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>12</literal>
                            </term>
                            <listitem>
                                <para>12</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <literal>13</literal>
                            </term>
                            <listitem>
                                <para>15</para>
                            </listitem>
                        </varlistentry>
                    </variablelist>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--export_frc </option>
                    <emphasis>F</emphasis>
                </term>
                <listitem>
                    <para>
                        set export frame rate code <emphasis>F</emphasis> [as input]. <emphasis>Obsolete</emphasis>, use <option>--export_fps</option> 0,F
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--hard_fps </option>
                </term>
                <listitem>
                    <para>
                        disable smooth dropping (for variable fps clips) [off]. See /docs/framerate.txt for more information.
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--pulldown </option>
                </term>
                <listitem>
                    <para>set MPEG 3:2 pulldown flags on export [off]</para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--antialias_para </option>
                    <emphasis>w,b</emphasis>
                </term>
                <listitem>
                    <para>center pixel weight, xy-bias [0.333,0.500]</para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--no_audio_adjust </option>
                </term>
                <listitem>
                    <para>disable internal audio frame sample adjustment [off]</para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--no_bitreservoir </option>
                </term>
                <listitem>
                    <para>disable lame bitreservoir for MP3 encoding [off]</para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--config_dir </option>
                    <emphasis>dir</emphasis>
                </term>
                <listitem>
                    <para>
                        Assume config files are in this <emphasis>dir</emphasis>. This only affects the -y ffmpeg and -y xvid4 modules. It gives the path where the modules search for their configuration.
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--lame_preset </option>
                    <emphasis>name[,fast]</emphasis>
                </term>
                <listitem>
                    <para>
                        use lame preset with <emphasis>name</emphasis> [off]. Lame features some built-in presets. Those presets are designed to provide the highest possible quality. They have for the most part been subject to and tuned via rigorous listening tests to verify and achieve this objective. These are continually updated to coincide with the latest developments that occur and as a result should provide you with nearly the best quality currently possible from LAME. Any of those VBR presets can also be used in fast mode, using the new vbr algorithm. This mode is faster, but its quality could be a little lower. To enable the fast mode, append "<emphasis>,fast</emphasis>"
                    </para>
                    <variablelist>
                        <varlistentry>
                            <term>
                                <emphasis>&lt;N kbps&gt;</emphasis>
                            </term>
                            <listitem>
                                <para>
                                    Using this preset will usually give you good quality at a specified bitrate. Depending on the bitrate entered, this preset will determine the optimal settings for that particular situation. While this approach works, it is not nearly as flexible as VBR, and usually will not reach the same quality level as VBR at higher bitrates. ABR.
                                </para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <emphasis>medium</emphasis>
                            </term>
                            <listitem>
                                <para>
                                    This preset should provide near transparency to most people on most music. The resulting bitrate should be in the 150-180kbps range, according to music complexity. VBR.
                                </para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <emphasis>standard</emphasis>
                            </term>
                            <listitem>
                                <para>
                                    This preset should generally be transparent to most people on most music and is already quite high in quality.  The resulting bitrate should be in the 170-210kbps range, according to music complexity. VBR.
                                </para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <emphasis>extreme</emphasis>
                            </term>
                            <listitem>
                                <para>
                                    If you have extremely good hearing and similar equipment, this preset will provide slightly higher quality than the "standard" mode. The resulting bitrate should be in the 200-240kbps range, according to music complexity. VBR.
                                </para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <emphasis>insane</emphasis>
                            </term>
                            <listitem>
                                <para>
                                    This preset will usually be overkill for most people and most situations, but if you must have the absolute highest quality with no regard to filesize, this is the way to go. This preset is the highest preset quality available.  320kbps CBR.
                                </para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                (taken from <ulink url="a">http://www.mp3dev.org/mp3/doc/html/presets.html)</ulink>
                            </term>
                            <listitem>
                                <para></para>
                            </listitem>
                        </varlistentry>
                    </variablelist>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--av_fine_ms </option>
                    <emphasis>t</emphasis>
                </term>
                <listitem>
                    <para>
                        AV fine-tuning shift <emphasis>t</emphasis> in millisecs [autodetect] also see -D.
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--nav_seek </option>
                    <emphasis>file</emphasis>
                </term>
                <listitem>
                    <para>
                        use VOB or AVI navigation file [off]. Generate a nav file with tcdemux -W &gt;nav_log for VOB files or with aviindex(1) for AVI files.
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--psu_mode </option>
                </term>
                <listitem>
                    <para>
                        process VOB in PSU, -o is a filemask incl. %d [off]. PSU means Program Stream Unit and this mode is useful for (mostly) NTSC DVDs which have several program stream units.
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--psu_chunks </option>
                    <emphasis>a-b</emphasis>
                </term>
                <listitem>
                    <para>
                        process only selected units <emphasis>a-b</emphasis> for PSU mode [all]
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--no_split </option>
                </term>
                <listitem>
                    <para>
                        encode to single file in chapter/psu/directory mode [off]. If you don't give this option, you'll end up with several files in one of the above mentioned modes. It is still possible to merge them with avimerge(1).
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--multi_input </option>
                </term>
                <listitem>
                    <para>
                        <emphasis>(EXPERIMENTAL)</emphasis> enable multiple input mode: intelligently join input files in import. The inputs can be expressed using standard POSIX globbing. While theorically all input modules are supported, it is safe to use this only when dealing with constant-sized audio (PCM) and intra-frame only video codecs (es: MJPEG). To be safe, use this mode with im, ffmpeg and raw import modules.
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--pre_clip </option>
                    <emphasis>t[,l[,b[,r]]]</emphasis>
                </term>
                <listitem>
                    <para>select initial frame region by clipping border [off]</para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--post_clip </option>
                    <emphasis>t[,l[,b[,r]]]</emphasis>
                </term>
                <listitem>
                    <para>select final frame region by clipping border [off]</para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--a52_drc_off </option>
                </term>
                <listitem>
                    <para>
                        disable liba52 dynamic range compression [enabled]. If you dont specify this option, liba52 will provide the default behaviour, which is to apply the full dynamic range compression as specified in the A/52 stream. This basically makes the loud sounds softer, and the soft sounds louder, so you can more easily listen to the stream in a noisy environment without disturbing anyone.
                    </para>
                    <para>
                        If you let it enabled this this will totally disable the dynamic range compression and provide a playback more adapted to a movie theater or a listening room.
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--a52_demux </option>
                </term>
                <listitem>
                    <para>demux AC3/A52 to separate channels [off]</para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--a52_dolby_off </option>
                </term>
                <listitem>
                    <para>
                        disable liba52 dolby surround [enabled]. Selects whether the output is plain stereo (if the option is set) or if it is Dolby Pro Logic - also called Dolby surround or 3:1 - downmix (if the option is not used).
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--log_no_color </option>
                </term>
                <listitem>
                    <para>
                        disable colored log messages. By default transcode use colors in log messages in order to easily distinguish message classes. That behaviour can be problematic if output of transcode is a file or a pipe, so this option came handful.
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--dir_mode </option>
                    <emphasis>base</emphasis>
                </term>
                <listitem>
                    <para>process directory contents to base-%03d.avi [off]</para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--frame_interval </option>
                    <emphasis>N</emphasis>
                </term>
                <listitem>
                    <para>
                        select only every <emphasis>N</emphasis>th frame to be exported [1]
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--encode_fields </option>
                    <emphasis>C</emphasis>
                </term>
                <listitem>
                    <para>
                        enable field based encoding (if supported) [off]. This option takes an argument if given to denote the order of fields. If the option is not given, it defaults to progressive (do not assume the picture is interlaced)
                    </para>
                    <para>
                        Valid codes for <emphasis>C</emphasis> are:
                    </para>
                    <variablelist>
                        <varlistentry>
                            <term>
                                <emphasis>p</emphasis>
                            </term>
                            <listitem>
                                <para>progressive (default)</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <emphasis>t</emphasis>
                            </term>
                            <listitem>
                                <para>top-field first</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <emphasis>b</emphasis>
                            </term>
                            <listitem>
                                <para>bottom-field first</para>
                            </listitem>
                        </varlistentry>
                    </variablelist>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--dv_yuy2_mode, --dv_yv12_mode</option>
                </term>
                <listitem>
                    <para>
                        Indicates that libdv decodes Digital Video frames in YUY2 (packed) or YV12 (planar) mode, respectively. Normally transcode figures out the correct mode automatically, but if you try to transcode PAL DV files and the results look strange, try one of these options.
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--write_pid </option>
                    <emphasis>file</emphasis>
                </term>
                <listitem>
                    <para>
                        write pid of signal thread to <emphasis>file</emphasis> [off]. Enables you to terminate transcode cleanly by sending a SIGINT (2) to the pid in <emphasis>file</emphasis>. Please note <emphasis>file</emphasis> will be overwritten. Usage example
                    </para>
                    <literallayout>
                        $ transcode ... --write_pid /tmp/transcode.pid &amp;
                        $ kill -2 `cat /tmp/transcode.pid`
                    </literallayout>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--nice </option>
                    <emphasis>N</emphasis>
                </term>
                <listitem>
                    <para>
                        set niceness to <emphasis>N</emphasis> [off]. The option --nice which renices transcode to the given positive or negative value. -10 sets a high priority; +10 a low priority. This might be useful for cluster mode.
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--progress_meter </option>
                    <emphasis>N</emphasis>
                </term>
                <listitem>
                    <para>
                        select type of progress meter [1]. Selects the type of progress message printed by transcode:
                    </para>
                    <variablelist>
                        <varlistentry>
                            <term>
                                <emphasis>0</emphasis>
                            </term>
                            <listitem>
                                <para>no progress meter</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <emphasis>1</emphasis>
                            </term>
                            <listitem>
                                <para>standard progress meter</para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>
                                <emphasis>2</emphasis>
                            </term>
                            <listitem>
                                <para>raw progress data (written to standard output)</para>
                            </listitem>
                        </varlistentry>
                    </variablelist>
                    <para>
                        Scripts that need progress data should use type 2, since the format of type 1 is subject to change without notice.
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--progress_rate </option>
                    <emphasis>N</emphasis>
                </term>
                <listitem>
                    <para>
                        print progress every <emphasis>N</emphasis> frames [1]. Controls how frequently the status message is printed (every <emphasis>N</emphasis> frames).
                    </para>
                </listitem>
            </varlistentry>
            
            <varlistentry>
                <term>
                    <option>--socket </option>
                    <emphasis>FILE</emphasis>
                </term>
                <listitem>
                    <para>
                        Open a socket to accept commands while running. See <emphasis>tcmodinfo(1)</emphasis> and /docs/filter-socket.txt for more information about the protocol.
                    </para>
                </listitem>
            </varlistentry>
        </variablelist>
    </refsect1>
    
    <refsect1 id='environment'>
        <title>ENVIRONMENT</title>
        <variablelist>
            <varlistentry>
                <term>
                    <emphasis>TRANSCODE_LOG_NO_COLOR</emphasis>
                </term>
                <listitem>
                    <para>if set, forces the colored logging off for all the tools of transcode suite.</para>
                </listitem>
            </varlistentry>
        </variablelist>
    </refsect1>
    
    <refsect1 id='notes'>
        <title>Notes</title>
        <variablelist>
            <varlistentry>
                <term>*</term>
                <listitem>
                    <para>Most source material parameter are auto-detected.</para>
                </listitem>
            </varlistentry>
            <varlistentry>
                <term>*</term>
                <listitem>
                    <para>Clipping region options are expanded symmetrically.  Examples:</para>
                    <para>-j 80 will be expanded to -j 80,0,80,0</para>
                    <para>-j 80,8 will be expanded to -j 80,8,80,8</para>
                    <para>-j 80,8,10 will be expanded to -j 80,8,10,8</para>
                </listitem>
            </varlistentry>
            <varlistentry>
                <term>*</term>
                <listitem>
                    <para>maximum image size is 1920x1088.</para>
                </listitem>
            </varlistentry>
            <varlistentry>
                <term>*</term>
                <listitem>
                    <para>
                        The video frame operations ordering is fixed: "-j -I -X -B -Z -Y -r -z -l -k -K -G -C" (executed from left to right).
                    </para>
                </listitem>
            </varlistentry>
            <varlistentry>
                <term>*</term>
                <listitem>
                    <para>
                        Shrinking the image with '-B' is not possible if the image width/height is not a multiple of 8, 16 or 32.
                    </para>
                </listitem>
            </varlistentry>
            <varlistentry>
                <term>*</term>
                <listitem>
                    <para>
                        Expanding the image with '-X' is not possible if the image width/height is not a multiple of 8, 16 or 32.
                    </para>
                </listitem>
            </varlistentry>
            <varlistentry>
                <term>*</term>
                <listitem>
                    <para>
                        The final frame width/height should be a multiple of 8. (to avoid encoding problems with some codecs)
                    </para>
                    <variablelist>
                        <varlistentry>
                            <term>1.</term>
                            <listitem>
                                <para>
                                    Reducing the video height/width by 2,4,8 Option '-r factor' can be used to shrink the video image by a constant factor, this factor can be 2,4 or 8.
                                </para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>2.</term>
                            <listitem>
                                <para>
                                    Clipping and changing the aspect ratio <command>transcode</command> uses 3 steps to produce the input image for the export modules
                                </para>
                                <variablelist>
                                    <varlistentry>
                                        <term>1.</term>
                                        <listitem>
                                            <para>Clipping of the input image.</para>
                                        </listitem>
                                    </varlistentry>
                                    <varlistentry>
                                        <term>2.</term>
                                        <listitem>
                                            <para>Changing the aspect ratio of the 1) output.</para>
                                        </listitem>
                                    </varlistentry>
                                    <varlistentry>
                                        <term>3.</term>
                                        <listitem>
                                            <para>Clipping of the 2) output.</para>
                                        </listitem>
                                    </varlistentry>
                                </variablelist>
                            </listitem>
                        </varlistentry>
                    </variablelist>
                </listitem>
            </varlistentry>
            <varlistentry>
                <term>*</term>
                <listitem>
                    <para>
                        <emphasis>Bits per pixel</emphasis>
                        (bits/pixel) is a value transcode calculates and prints when starting up. It is mainly useful when encoding to MPEG4 (xvid, divx, etc). You'll see line like
                    </para>
                    <para>[transcode] V: bits/pixel       | 0.237</para>
                    <para>
                        Simplified said, bits/pixel quantifies how good an encode will be. Although this value depends heavily on the used input material, as a general rule of thump it can be said that values greater or close to 0.2 will result in good encodes, encodes with values less than 0.15 will have noticeable artifacts.
                    </para>
                    <para>
                        <emphasis>Bits per pixel</emphasis>
                        depends on the resolution, bitrate and frames per second. If you have a low value ( &lt; 0.15), you might want to raise the bitrate or encode at a lower resolution. The exact formula is
                    </para>
                    <literallayout>
                            bitrate*1000
                        bpp =  ------------------
                            width*height*fps
                    </literallayout>
                </listitem>
            </varlistentry>
            <varlistentry>
                <term>*</term>
                <listitem>
                    <para>
                        <emphasis>AC3 / Multiple channels</emphasis>
                    </para>
                    <para>
                        When you do import an audio stream which has more then two audio channels - this is usually the case for AC3 audio - transcode will automagically downmix to two channels (stereo). You'll see line like
                    </para>
                    <para>[transcode] A: downmix          | 5 channels -&gt; 2 channels</para>
                    <para>
                        This is done, because most encoders and audio filters can not handle more than 2 channels correctly. The PCM internal representation does not support more than two channels, audio will be downmixed to stereo <emphasis>No</emphasis> downmix will happen, if you use AC3 as the internal audio codec or use audio pass-through.
                    </para>
                </listitem>
            </varlistentry>
        </variablelist>
    </refsect1>
    
    <refsect1 id='examples'>
        <title>Examples</title>
        <para>
            The following command will read it's input from the DVD drive (I assume <filename>/dev/dvd</filename> is a symbolic link to the actual DVD device) and produce a splitted divx4 movie according to the chapter information on the DVD medium.  The output files will be named <emphasis>my_movie-ch00.avi</emphasis>, <emphasis>my_movie-ch01.avi</emphasis> ...
        </para>
        <literallayout>
            <userinput>
                transcode -i /dev/dvd/ -x dvd -j 16,0 -B 5,0 -Y 40,8 -s 4.47 -U my_movie -y xvid -w 1618
            </userinput>
        </literallayout>
        <para>
            Option <option>-j 16,0</option> will be expanded to <option>-j 16,0,16,0</option> and results in 16 rows from the top and the bottom of the image to be cut off. This may be usefull if the source consists of black top and bottom bars.
        </para>
        <para>
            Option <option>-B 5,0</option> tells <command>transcode</command> to shrink the resulting image by 5*32=160 rows in height.
        </para>
        <para>
            Option <option>-Y 40,8</option> will be expanded to <option>-Y 40,8,40,8</option> and tells <command>transcode</command> to ...
        </para>
        <para>
            Option <option>-s 4.47</option> tells <command>transcode</command> to increase audio volume by a factor 4.47.
        </para>
        <para>
            Option <option>-U my_movie</option> tells <command>transcode</command> to operate in chapter mode and produce output to files named <emphasis>my_movie-ch00.avi</emphasis>, <emphasis>my_movie-ch01.avi</emphasis>.... You can either merge the files afterwards with avimerge or add the option --no_split to the command line.
        </para>
        <para>
            Option <option>-y xvid</option> tells <command>transcode</command> to use the export module export_xvid.so which in turn uses the XviD encoder to encode the video.
        </para>
        <para>
            Option <option>-w 1618</option> tells <command>transcode</command> to set the encoder bitrate to 1618 which is lower than the default of 1800 and results in smaller files with the loss of visual quality.
        </para>
        <variablelist>
            <varlistentry>
                <term>Lets assume that you have an NTSC DVD (720x480) and you want to make an NTSC-SVCD</term>
                <listitem>
                    <para>
                        The frame size of the DVD movie is 720x480 @ 16:9. For the purpose of frame resizing, the width 720 is not relavant (that is, it will not be used in the following reasoning). It is not needed because the original frame size is really defined by the frame height and aspect ratio. The _final result_ should be 640x480, encoded as 480x480 @ 4:3 (the height 480 multiplied by the aspect ratio 4:3 gives the width 640). This same frame size (640x480) can also be encoded as 640x360 @ 16:9
                        (the height 360 by the aspect ratio 16:9 gives the width
                        640).
                    </para>
                    <para>
                        As the _original video_ has aspect ratio 16:9, first we resize to 640x360, keeping that aspect ratio. But the aspect ratio has to be changed to 4:3. To find the frame size in the new aspect ratio the height 360 is multiplied by the new aspect ratio, giving the width 480. This is accomplished with the transcode options "<option>--export_asr</option> 2 -Z 480x360,fast".
                    </para>
                    <para>
                        To avoid stretching the video height in this change (because the new aspect ratio is less than the original), black borders should be added at the top and bottom of the video, bringing the frame to the desired 480x480 @ 4:3 size. The transcode option for this is "-Y -60,0,-60,0".
                    </para>
                    <para>
                        If for some reason (maybe a subtitle filter) the black borders (of height 60 each) should be added before resizing the frame and changing the aspect ratio to 4:3. One reason for that would be the need of running a _pre_ filter after adding the black borders. Then the options "-j" or "--pre_clip" can be used instead of "-Y". In this case the black border height has to be recalculated by applying the aspect ratio 4:3 to the value alreadyfound: 60 * (4/3) = 80. The transcode options "-j -80,0,-80,0" or "--pre_clip -80,0,-80,0" are then used instead of "-Y -60,0,-60,0", and "-Z 480x360,fast" is replaced by "-Z 480x480,fast".
                    </para>
                </listitem>
            </varlistentry>
        </variablelist>
    </refsect1>
    
    <refsect1 id='authors'>
        <title>Authors</title>
        <para>
            Written by Thomas Oestreich &lt;ostreich@theorie.physik.uni-goettingen.de&gt;, 
            Tilmann Bitterberg and the Transcode-Team
        </para>
        <para>
            See the <emphasis>AUTHORS</emphasis> file for details.
        </para>
    </refsect1>
    
    <refsect1 id='see_also'>
        <title>See Also</title>
        <para>
            <citerefentry>
                <refentrytitle>transcode_export</refentrytitle><manvolnum>1</manvolnum>
            </citerefentry>
            ,
            <citerefentry>
                <refentrytitle>transcode_filter</refentrytitle><manvolnum>1</manvolnum>
            </citerefentry>
            ,
            <citerefentry>
                <refentrytitle>transcode_import</refentrytitle><manvolnum>1</manvolnum>
            </citerefentry>
            ,
            <citerefentry>
                <refentrytitle>avifix</refentrytitle><manvolnum>1</manvolnum>
            </citerefentry>
            ,
            <citerefentry>
                <refentrytitle>avisync</refentrytitle><manvolnum>1</manvolnum>
            </citerefentry>
            ,
            <citerefentry>
                <refentrytitle>avimerge</refentrytitle><manvolnum>1</manvolnum>
            </citerefentry>
            ,
            <citerefentry>
                <refentrytitle>avisplit</refentrytitle><manvolnum>1</manvolnum>
            </citerefentry>
            ,
            <citerefentry>
                <refentrytitle>tcprobe</refentrytitle><manvolnum>1</manvolnum>
            </citerefentry>
            ,
            <citerefentry>
                <refentrytitle>tcscan</refentrytitle><manvolnum>1</manvolnum>
            </citerefentry>
            ,
            <citerefentry>
                <refentrytitle>tccat</refentrytitle><manvolnum>1</manvolnum>
            </citerefentry>
            ,
            <citerefentry>
                <refentrytitle>tcdemux</refentrytitle><manvolnum>1</manvolnum>
            </citerefentry>
            ,
            <citerefentry>
                <refentrytitle>tcextract</refentrytitle><manvolnum>1</manvolnum>
            </citerefentry>
            ,
            <citerefentry>
                <refentrytitle>tcdecode</refentrytitle><manvolnum>1</manvolnum>
            </citerefentry>
            ,
            <citerefentry>
                <refentrytitle>tcmodinfo</refentrytitle><manvolnum>1</manvolnum>
            </citerefentry>
            ,
            <citerefentry>
                <refentrytitle>tcxmlcheck</refentrytitle><manvolnum>1</manvolnum>
            </citerefentry>
            ,
            <citerefentry>
                <refentrytitle>transcode</refentrytitle><manvolnum>1</manvolnum>
            </citerefentry>
        </para>
        <!-- .br -->
    </refsect1>
    
    <refsect1 id='www'>
        <title>WWW</title>
        <para>
            Frequently asked questions (FAQ) at 
            <ulink url='a'>
                http://www.transcoding.org/cgi-bin/transcode?Transcode_FAQ
            </ulink>
            Example transcode sessions at 
            <ulink url='a'>
                http://www.transcoding.org/cgi-bin/transcode?Command_Examples
            </ulink>
        </para>
    </refsect1>
    
    <refsect1 id='bugs'>
        <title>Bugs</title>
        <para>
            Yes, there are bugs in transcode!
            Do your part and report them immediately.
        </para>
        <para>
            For details, see 
            <ulink url='a'>
                http://www.transcoding.org/cgi-bin/transcode?Reporting_Problems
            </ulink>
        </para>
    </refsect1>
</refentry>