vlc命令大全
分类:Others, Others
阅读 (47,012)
Add comments
5月 082017
转载请注明原文地址:http://bcoder.com/others/vlc-commands
使用如下命令即可获得此帮助信息
1 |
vlc --longhelp --advanced |
本博文是基于VLC media player 2.2.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 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 |
liuderu@liuderu-ubuntu-vm:~$ vlc --longhelp --advanced VLC media player 2.2.2 Weatherwax (revision 2.2.2-0-g6259d80) 用法: vlc [选项] [流] ... 您可以在命令行中指定多个流。 它们将被加入播放列表队列。 指定的首个项目将被首先播放。 选项样式: --选项 用于设置程序执行期间的全局选项。 -选项 单字母版本的全局 --选项。 :选项 一个仅在流之前应用的选项, 且将覆盖先前的设置。 流 MRL 语法: [[协议][/去复用]://]URL[#[标题][:章节][-[标题][:章节]]] [:选项=值 ...] 许多全局 --选项 也可被用作 MRL 特定的 :选项。 可指定多对 :选项=值。 URL 语法: file:///路径/文件 纯媒体文件 http://主机[:端口]/文件 HTTP URL ftp://主机[:端口]/文件 FTP URL mms://主机[:端口]/文件 MMS URL screen:// 屏幕捕获 dvd://[设备] DVD 设备 vcd://[设备] VCD 设备 cdda://[设备] 音频 CD 设备 udp://[[<源地址>]@[<绑定地址>][:<绑定端口>]] 流服务器发送的 UDP 流 vlc://pause:<秒数> 暂停播放列表一定时间 vlc://quit 退出 VLC 的特殊项 Lua 解析器 (lua) --lua-intf <字串> Lua 界面 --lua-config <字串> Lua 界面配置 Lua HTTP: --http-password <字串> 密码 --http-src <字串> 源目录 --http-index, --no-http-index 目录索引 (默认关闭) Lua CLI: --rc-host <字串> TCP 命令输入 --cli-host <字串> CLI 输入 Lua Telnet: --telnet-host <字串> 主机 --telnet-port <整数 [1 .. 65535]> 端口 --telnet-password <字串> 密码 --lua-sd <字串> --lua-longname <字串> UDP 流输出 (udp) --sout-udp-caching <整数 [-2147483648 .. 2147483647]> 缓存值 (毫秒) --sout-udp-group <整数 [-2147483648 .. 2147483647]> 分组数据包 IceCAST 输出 (access_output_shout) --sout-shout-name <字串> 流名称 --sout-shout-description <字串> 流描述 --sout-shout-mp3, --no-sout-shout-mp3 传输 MP3 流 (默认关闭) --sout-shout-genre <字串> 流派描述 --sout-shout-url <字串> URL 描述 --sout-shout-bitrate <字串> 位率 --sout-shout-samplerate <字串> 采样率 --sout-shout-channels <字串> 频道编号 --sout-shout-quality <字串> Ogg Vorbis 质量 --sout-shout-public, --no-sout-shout-public 公共流 (默认关闭) 文件流输出 (access_output_file) --sout-file-overwrite, --no-sout-file-overwrite 覆盖写入现有文件 (默认启用) --sout-file-append, --no-sout-file-append 附加到文件 (默认关闭) --sout-file-format, --no-sout-file-format 格式化时间与日期 (默认关闭) --sout-file-sync, --no-sout-file-sync 同期写入 (默认关闭) HTTP 流输出 (access_output_http) --sout-http-user <字串> 用户名 --sout-http-pwd <字串> 密码 --sout-http-mime <字串> Mime --sout-http-metacube, --no-sout-http-metacube Metacube (默认关闭) HTTP Live 流输出 (access_output_livehttp) --sout-livehttp-seglen <整数 [-2147483648 .. 2147483647]> 剪辑长度 --sout-livehttp-numsegs <整数 [-2147483648 .. 2147483647]> 剪辑数目 --sout-livehttp-initial-segment-number <整数 [-2147483648 .. 2147483647]> 首段编号 --sout-livehttp-splitanywhere, --no-sout-livehttp-splitanywhere 任意位置切割剪辑 (默认关闭) --sout-livehttp-delsegs, --no-sout-livehttp-delsegs 删除剪辑 (默认启用) --sout-livehttp-ratecontrol, --no-sout-livehttp-ratecontrol 使用复用器的速率控制机制 (默认关闭) --sout-livehttp-caching, --no-sout-livehttp-caching 允许缓存 (默认关闭) --sout-livehttp-generate-iv, --no-sout-livehttp-generate-iv 加密使用随机 IV (默认关闭) --sout-livehttp-index <字串> 索引文件 --sout-livehttp-index-url <字串> 置于索引文件的完整 URL --sout-livehttp-key-uri <字串> AES 密钥 URI,相对于播放列表 --sout-livehttp-key-file <字串> AES 密钥文件 --sout-livehttp-key-loadfile <字串> vlc 读取密钥 uri 及密钥位置的文件 Freetype2 字体渲染器 (freetype) --freetype-font <字串> 字体 --freetype-monofont <字串> 等宽字体 --freetype-fontsize <整数 [0 .. 4096]> 以像素为单位的字体大小 --freetype-rel-fontsize {20 (较小), 18 (小), 16 (普通), 12 (大), 6 (较大)} 相对字体大小 --freetype-opacity <整数 [0 .. 255]> 文本不透明度 --freetype-color {0 (黑色), 8421504 (灰色), 12632256 (银色), 16777215 (白色), 8388608 (栗色), 16711680 (红色), 16711935 (紫红色), 16776960 (黄色), 8421376 (橄榄绿), 32768 (绿色), 32896 (凫蓝色), 65280 (酸橙绿色), 8388736 (紫色), 128 (藏青色), 255 (蓝色), 65535 (水蓝色)} 文本默认色彩 --freetype-bold, --no-freetype-bold 强制加粗 (默认关闭) --freetype-background-opacity <整数 [0 .. 255]> 背景不透明度 --freetype-background-color {0 (黑色), 8421504 (灰色), 12632256 (银色), 16777215 (白色), 8388608 (栗色), 16711680 (红色), 16711935 (紫红色), 16776960 (黄色), 8421376 (橄榄绿), 32768 (绿色), 32896 (凫蓝色), 65280 (酸橙绿色), 8388736 (紫色), 128 (藏青色), 255 (蓝色), 65535 (水蓝色)} 背景颜色 --freetype-outline-opacity <整数 [0 .. 255]> 轮廓不透明度 --freetype-outline-color {0 (黑色), 8421504 (灰色), 12632256 (银色), 16777215 (白色), 8388608 (栗色), 16711680 (红色), 16711935 (紫红色), 16776960 (黄色), 8421376 (橄榄绿), 32768 (绿色), 32896 (凫蓝色), 65280 (酸橙绿色), 8388736 (紫色), 128 (藏青色), 255 (蓝色), 65535 (水蓝色)} 轮廓颜色 --freetype-outline-thickness {0 (无), 2 (浅), 4 (普通), 6 (深)} 轮廓宽度 --freetype-shadow-opacity <整数 [0 .. 255]> 阴影不透明度 --freetype-shadow-color {0 (黑色), 8421504 (灰色), 12632256 (银色), 16777215 (白色), 8388608 (栗色), 16711680 (红色), 16711935 (紫红色), 16776960 (黄色), 8421376 (橄榄绿), 32768 (绿色), 32896 (凫蓝色), 65280 (酸橙绿色), 8388736 (紫色), 128 (藏青色), 255 (蓝色), 65535 (水蓝色)} 阴影颜色 --freetype-shadow-angle <浮点 [-360.000000 .. 360.000000]> 阴影角度 --freetype-shadow-distance <浮点 [0.000000 .. 1.000000]> 阴影距离 --freetype-yuvp, --no-freetype-yuvp 使用 YUVP 渲染器 (默认关闭) DVB 字幕解码器 (dvbsub) --dvbsub-position {0 (居中), 1 (左), 2 (右), 4 (上), 8 (下), 5 (左上), 6 (右上), 9 (左下), 10 (右下)} 子画面位置 --dvbsub-x <整数 [-2147483648 .. 2147483647]> 解码 X 坐标 --dvbsub-y <整数 [-2147483648 .. 2147483647]> 解码 Y 坐标 --sout-dvbsub-x <整数 [-2147483648 .. 2147483647]> 编码 X 坐标 --sout-dvbsub-y <整数 [-2147483648 .. 2147483647]> 编码 Y 坐标 dummy 解码器 (ddummy) --dummy-save-es, --no-dummy-save-es 保存 raw 编解码器数据 (默认关闭) Libtwolame 音频解码器 (twolame) --sout-twolame-quality <浮点> 编码质量 --sout-twolame-mode {0 (立体声), 1 (双单声道), 2 (联合立体声)} 立体声模式 --sout-twolame-vbr, --no-sout-twolame-vbr VBR 模式 (默认关闭) --sout-twolame-psy <整数 [-2147483648 .. 2147483647]> 心理声学模型 Theora 视频解码器 (theora) --theora-postproc <整数 [-2147483648 .. 2147483647]> 预处理质量 --sout-theora-quality <整数 [-2147483648 .. 2147483647]> 编码质量 SVG video decoder (svgdec) --svg-width <整数 [1 .. 65535]> 图像宽度 --svg-height <整数 [1 .. 65535]> 图像高度 --svg-scale <浮点> 缩放因数 JPEG 图像解码器 (jpeg) 正在编码: --sout-jpeg-quality <整数 [0 .. 100]> 质量等级 DVD 字幕解码器 (spudec) --dvdsub-transparency, --no-dvdsub-transparency 禁用 DVD 字幕透明 (默认关闭) FFmpeg 音频/视频解码器 (avcodec) FFmpeg 库提供的多款音频及视频解码器/编码器。包括 (MS)MPEG4, DivX, SV1,H261, H263, H264, WMV, WMA, AAC, AMR, DV, MJPEG 及其他编解码器 正在解码: --avcodec-dr, --no-avcodec-dr 直接渲染 (默认启用) --avcodec-error-resilience <整数 [-2147483648 .. 2147483647]> 弹性错误 --avcodec-workaround-bugs <整数 [-2147483648 .. 2147483647]> 工作区 bug --avcodec-hurry-up, --no-avcodec-hurry-up 紧急 (默认启用) --avcodec-skip-frame <整数 [-1 .. 4]> 跳帧 (默认=0) --avcodec-skip-idct <整数 [-1 .. 4]> 跳过 idct (默认=0) --avcodec-vismv <整数 [-2147483648 .. 2147483647]> 可视化运动向量 --avcodec-fast, --no-avcodec-fast 允许非正常速度优化 (默认关闭) --avcodec-skiploopfilter {0 (无), 1 (非参考), 2 (双向), 3 (非关键), 4 (全部)} 用于 H.264 解码的跳过循环滤镜 --avcodec-debug <整数 [-2147483648 .. 2147483647]> 调试掩码 --avcodec-codec <字串> 编解码器名称 --avcodec-hw <字串> 硬件解码 --avcodec-threads <整数 [-2147483648 .. 2147483647]> 线程 --avcodec-options <字串> Advanced options 正在编码: --sout-avcodec-codec <字串> 编解码器名称 --sout-avcodec-hq {rd,bits,simple} 质量等级 --sout-avcodec-keyint <整数 [-2147483648 .. 2147483647]> 关键帧比率 --sout-avcodec-bframes <整数 [-2147483648 .. 2147483647]> B 帧比率 --sout-avcodec-hurry-up, --no-sout-avcodec-hurry-up 紧急 (默认关闭) --sout-avcodec-interlace, --no-sout-avcodec-interlace 交错编码 (默认关闭) --sout-avcodec-interlace-me, --no-sout-avcodec-interlace-me 交错运动估算 (默认启用) --sout-avcodec-vt <整数 [-2147483648 .. 2147483647]> 视频位率偏差 --sout-avcodec-pre-me, --no-sout-avcodec-pre-me 预欲动估算 (默认关闭) --sout-avcodec-rc-buffer-size <整数 [-2147483648 .. 2147483647]> 速率控制缓存大小 --sout-avcodec-rc-buffer-aggressivity <浮点> 帧率控制缓存激进性 --sout-avcodec-i-quant-factor <浮点> I 量化因数 --sout-avcodec-noise-reduction <整数 [-2147483648 .. 2147483647]> 噪点消除 --sout-avcodec-mpeg4-matrix, --no-sout-avcodec-mpeg4-matrix MPEG4 量化矩阵 (默认关闭) --sout-avcodec-qmin <整数 [-2147483648 .. 2147483647]> 最小视频向量化比例 --sout-avcodec-qmax <整数 [-2147483648 .. 2147483647]> 最大视频向量化比例 --sout-avcodec-trellis, --no-sout-avcodec-trellis 格式向量化 (默认关闭) --sout-avcodec-qscale <浮点> 固定量化比例 --sout-avcodec-strict <整数 [-2 .. 2]> 严格标准的一致 --sout-avcodec-lumi-masking <浮点> 明亮掩码 --sout-avcodec-dark-masking <浮点> 阴暗掩码 --sout-avcodec-p-masking <浮点> 运动掩码 --sout-avcodec-border-masking <浮点> 边框掩码 --sout-avcodec-luma-elim-threshold <整数 [-2147483648 .. 2147483647]> 亮度消除 --sout-avcodec-chroma-elim-threshold <整数 [-2147483648 .. 2147483647]> 色度消除 --sout-avcodec-aac-profile <字串> 指定要使用的 AAC 音频方案 --sout-avcodec-options <字串> Advanced options Kate 重叠解码器 (kate) Kate 是一款用于文本与图像覆盖层的编解码器。 要渲染复杂的 Kate 流需要 Tiger 渲染库,但即使没有,VLC 也能渲染静态文本和基于图像的字幕。 注意,在播放新流之前,对以下设置的更改将不会生效。有望尽早修复。 --kate-formatted, --no-kate-formatted 显示格式化的字幕 (默认启用) 文本字幕解码器 (subsdec) --subsdec-align {0 (居中), 1 (左), 2 (右)} 字幕调整 --subsdec-encoding {,system,UTF-8,UTF-16,UTF-16BE,UTF-16LE,GB18030,ISO-8859-15,Windows-1252,IBM850,ISO-8859-2,Windows-1250,ISO-8859-3,ISO-8859-10,Windows-1251,KOI8-R,KOI8-U,ISO-8859-6,Windows-1256,ISO-8859-7,Windows-1253,ISO-8859-8,Windows-1255,ISO-8859-9,Windows-1254,ISO-8859-11,Windows-874,ISO-8859-13,Windows-1257,ISO-8859-14,ISO-8859-16,ISO-2022-CN-EXT,EUC-CN,ISO-2022-JP-2,EUC-JP,Shift_JIS,CP949,ISO-2022-KR,Big5,ISO-2022-TW,Big5-HKSCS,VISCII,Windows-1258} 字幕文本编码 --subsdec-autodetect-utf8, --no-subsdec-autodetect-utf8 UTF-8 字幕自动检测 (默认启用) --subsdec-formatted, --no-subsdec-formatted 显示格式化的字幕 (默认启用) H.264/MPEG-4 Part 10/AVC 编码器 (x264) (x264) --sout-x264-keyint <整数 [-2147483648 .. 2147483647]> 最大 GOP 大小 --sout-x264-min-keyint <整数 [-2147483648 .. 2147483647]> 最小 GOP 大小 --sout-x264-opengop, --no-sout-x264-opengop 使用恢复点闭合 GOP (默认关闭) --sout-x264-bluray-compat, --no-sout-x264-bluray-compat 启用 Blu-ray 兼容性支持 (默认关闭) --sout-x264-scenecut <整数 [-1 .. 100]> 扩展 I 帧激进性 --sout-x264-bframes <整数 [0 .. 16]> 在 I 和 P 之间的 B 帧 --sout-x264-b-adapt <整数 [0 .. 2]> 适应 B 帧检测 --sout-x264-b-bias <整数 [-100 .. 100]> 影响 (倾向) B 帧用法 --sout-x264-bpyramid {none,strict,normal} 保留一些 B 帧作为参考 --sout-x264-cabac, --no-sout-x264-cabac CABAC (默认启用) --sout-x264-fullrange, --no-sout-x264-fullrange 使用完整色彩区间,代替 TV 色彩区间 (默认关闭) --sout-x264-ref <整数 [1 .. 16]> 参考帧数量 --sout-x264-nf, --no-sout-x264-nf 跳过循环滤镜 (默认关闭) --sout-x264-deblock <字串> 循环滤镜 AlphaCO 和 Beta 参数 alpha: beta --sout-x264-psy-rd <字串> 疯狂视觉优化的强度,默认为 "1.0:0.0" --sout-x264-psy, --no-sout-x264-psy 使用疯狂视觉优化 (默认启用) --sout-x264-level <字串> H.264 等级 --sout-x264-profile {baseline,main,high,high10,high422,high444} H.264 配置文件 --sout-x264-interlaced, --no-sout-x264-interlaced 交错模式 (默认关闭) --sout-x264-frame-packing {-1 (), 0 (棋盘), 1 (列调整), 2 (行调整), 3 (左右模式), 4 (上下模式), 5 (帧调整)} 帧封装 --sout-x264-slices <整数 [-2147483648 .. 2147483647]> 强制每帧切片数 --sout-x264-slice-max-size <整数 [-2147483648 .. 2147483647]> 限定各切片的尺寸为指定字节数 --sout-x264-slice-max-mbs <整数 [-2147483648 .. 2147483647]> 限定宏块中各切片的尺寸 --sout-x264-hrd {none,vbr,cbr} HRD 计时信息 --sout-x264-qp <整数 [-1 .. 51]> 设置 QP --sout-x264-crf <整数 [0 .. 51]> 基于质量的 VBR --sout-x264-qpmin <整数 [0 .. 51]> 最小 QP --sout-x264-qpmax <整数 [0 .. 51]> 最大 QP --sout-x264-qpstep <整数 [0 .. 51]> 最大 QP 步进 --sout-x264-ratetol <浮点 [0.000000 .. 100.000000]> 平均位率公差 --sout-x264-vbv-maxrate <整数 [-2147483648 .. 2147483647]> 最大本地位率 --sout-x264-vbv-bufsize <整数 [-2147483648 .. 2147483647]> VBV 缓冲 --sout-x264-vbv-init <浮点 [0.000000 .. 1.000000]> 初始 VBV 缓冲占有期 --sout-x264-ipratio <浮点 [1.000000 .. 2.000000]> I 和 P 之间的 QP 因数 --sout-x264-pbratio <浮点 [1.000000 .. 2.000000]> P 和 B 之间的 QP 因数 --sout-x264-chroma-qp-offset <整数 [-2147483648 .. 2147483647]> 在色度和亮度之间的差异 --sout-x264-pass <整数 [0 .. 3]> 多轮编码码率控制 --sout-x264-qcomp <浮点 [0.000000 .. 1.000000]> QP 曲线压缩 --sout-x264-cplxblur <浮点> 减少 QP 波动 --sout-x264-qblur <浮点> 减少 QP 波动 --sout-x264-aq-mode <整数 [0 .. 2]> AQ 如何发布位 --sout-x264-aq-strength <浮点> AQ 强度 --sout-x264-partitions {none,fast,normal,slow,all} 分割计算器 --sout-x264-direct {none,spatial,temporal,auto} 直接 MV 预计模式 --sout-x264-direct-8x8 <整数 [-1 .. 1]> 直接预计大小 --sout-x264-weightb, --no-sout-x264-weightb 用于 B 帧的有利预计 (默认启用) --sout-x264-weightp <整数 [0 .. 2]> P 帧加权预测 --sout-x264-me {dia,hex,umh,esa,tesa} 整数像素运动估计模式 --sout-x264-merange <整数 [1 .. 64]> 最大运动向量搜索范围 --sout-x264-mvrange <整数 [-2147483648 .. 2147483647]> 最大运动向量长度 --sout-x264-mvrange-thread <整数 [-2147483648 .. 2147483647]> 线程之间的最小缓存空间 --sout-x264-subme <整数 [-2147483648 .. 2147483647]> 子像素运动估计和切割确定质量 --sout-x264-mixed-refs, --no-sout-x264-mixed-refs 在一个每分割基础上判断参考 (默认启用) --sout-x264-chroma-me, --no-sout-x264-chroma-me 动态估算中的色度 (默认启用) --sout-x264-8x8dct, --no-sout-x264-8x8dct 适应空间改版大小 (默认启用) --sout-x264-trellis <整数 [0 .. 2]> 格式 RD 量化 --sout-x264-lookahead <整数 [0 .. 60]> 统计帧数以供帧类预测 --sout-x264-intra-refresh, --no-sout-x264-intra-refresh 使用周期性的内部刷新 (默认关闭) --sout-x264-mbtree, --no-sout-x264-mbtree 使用 mb-tree 速率控制 (默认启用) --sout-x264-fast-pskip, --no-sout-x264-fast-pskip 在 P 帧上的早期跳过检测 (默认启用) --sout-x264-dct-decimate, --no-sout-x264-dct-decimate P 帧的阀系数 (默认启用) --sout-x264-nr <整数 [0 .. 1000]> 噪点消除 --sout-x264-deadzone-inter <整数 [0 .. 32]> Inter 亮度量化死区 --sout-x264-deadzone-intra <整数 [0 .. 32]> Intra 亮度量化死区 --sout-x264-non-deterministic, --no-sout-x264-non-deterministic 在线程中的非确定性优化 (默认关闭) --sout-x264-asm, --no-sout-x264-asm CPU 优化 (默认启用) --sout-x264-psnr, --no-sout-x264-psnr PSNR 计算 (默认关闭) --sout-x264-ssim, --no-sout-x264-ssim SSIM 计算 (默认关闭) --sout-x264-quiet, --no-sout-x264-quiet 静默模式 (默认关闭) --sout-x264-sps-id <整数 [-2147483648 .. 2147483647]> SPS 和 PPS id 号 --sout-x264-aud, --no-sout-x264-aud 访问单元分隔符 (默认关闭) --sout-x264-verbose, --no-sout-x264-verbose 统计信息 (默认关闭) --sout-x264-stats <字串> 第二轮统计信息文件名 --sout-x264-preset {ultrafast,superfast,veryfast,faster,fast,medium,slow,slower,veryslow,placebo} 已使用默认预设设置 --sout-x264-tune {film,animation,grain,stillimage,psnr,ssim,fastdecode,zerolatency} 已使用默认调谐器设置 --sout-x264-options <字串> x264 高级选项。 Speex 音频解码器 (speex) --sout-speex-mode {0 (窄带 (8kHz)), 1 (宽带 (16kHz)), 2 (超宽带 (32kHz))} 模式 --sout-speex-complexity <整数 [1 .. 10]> 编码复杂度 --sout-speex-cbr, --no-sout-speex-cbr CBR 编码 (默认关闭) --sout-speex-quality <浮点 [0.000000 .. 10.000000]> 编码质量 --sout-speex-max-bitrate <整数 [-2147483648 .. 2147483647]> 最大位率 --sout-speex-vad, --no-sout-speex-vad 语音活动检测 (默认启用) --sout-speex-dtx, --no-sout-speex-dtx 非连续传输 (默认关闭) Dirac 视频解码器,使用 libschroedinger (schroedinger) 正在编码: --sout-schro-rate-control {constant_noise_threshold,constant_bitrate,low_delay,lossless,constant_lambda,constant_error,constant_quality} 速率控制方法 --sout-schro-quality <浮点 [-1.000000 .. 10.000000]> 恒定质量因子 --sout-schro-noise-threshold <浮点 [-1.000000 .. 100.000000]> 噪点阈值 --sout-schro-bitrate <整数 [-1 .. 2147483647]> CBR 位率 (kb/秒) --sout-schro-max-bitrate <整数 [-1 .. 2147483647]> 最高码率 (kbps) --sout-schro-min-bitrate <整数 [-1 .. 2147483647]> 最低 (kbps) --sout-schro-gop-structure {adaptive,intra_only,backref,chained_backref,biref,chained_biref} GOP 结构 --sout-schro-gop-length <整数 [-1 .. 2147483647]> GOP 长度 --sout-schro-chroma-fmt {420,422,444} 色度格式 --sout-schro-coding-mode {auto,progressive,field} 画面编码模式 --sout-schro-mv-precision {1,1/2,1/4,1/8} 运动矢量精度 --sout-schro-motion-block-size {automatic,small,medium,large} 运动补偿块尺寸 --sout-schro-motion-block-overlap {automatic,none,partial,full} 运动补偿块重叠 --sout-schro-me-combined <整数 [-1 .. 1]> 三原色动作估计 --sout-schro-enable-hierarchical-me <整数 [-1 .. 1]> 启用分层运动估算 --sout-schro-downsample-levels <整数 [-1 .. 8]> 减采样的层数 --sout-schro-enable-global-me <整数 [-1 .. 1]> 启用全局运动估算 --sout-schro-enable-phasecorr-me <整数 [-1 .. 1]> 启用相位关联估算 --sout-schro-intra-wavelet {desl_dubuc_9_7,le_gall_5_3,desl_dubuc_13_7,haar_0,haar_1,fidelity,daub_9_7} 画面内 DWT 滤镜 --sout-schro-inter-wavelet {desl_dubuc_9_7,le_gall_5_3,desl_dubuc_13_7,haar_0,haar_1,fidelity,daub_9_7} 画面间 DWT 滤镜 --sout-schro-transform-depth <整数 [-1 .. 6]> DWT 反复数目 --sout-schro-enable-multiquant <整数 [-1 .. 1]> 启用多个量化器 --sout-schro-codeblock-size {automatic,small,medium,large,full} 各子带编码块尺寸 --sout-schro-filtering {none,center_weighted_median,gaussian,add_noise,adaptive_gaussian,lowpass} 预过滤器 --sout-schro-filter-value <浮点 [-1.000000 .. 100.000000]> 预过滤总量 --sout-schro-enable-scd <整数 [-1 .. 1]> 启用场景变化侦测 --sout-schro-perceptual-weighting {none,ccir959,moo,manos_sakrison} 感知加权法 --sout-schro-perceptual-distance <浮点 [-1.000000 .. 100.000000]> 感知距离 --sout-schro-enable-noarith <整数 [-1 .. 1]> 禁用算术编码 --sout-schro-horiz-slices <整数 [-1 .. 2147483647]> 每帧水平切片数 --sout-schro-vert-slices <整数 [-1 .. 2147483647]> 每帧垂直切片数 --sout-schro-force-profile {auto,vc2_low_delay,vc2_simple,vc2_main,main} 强制配置文件 Vorbis 音频解码器 (vorbis) --sout-vorbis-quality <整数 [0 .. 10]> 编码质量 --sout-vorbis-max-bitrate <整数 [-2147483648 .. 2147483647]> 最大编码位率 --sout-vorbis-min-bitrate <整数 [-2147483648 .. 2147483647]> 最小编码位率 --sout-vorbis-cbr, --no-sout-vorbis-cbr CBR 编码 (默认关闭) 可视化过滤器 (visual) 常规: --effect-list <字串> 效果列表 --effect-width <整数 [-2147483648 .. 2147483647]> 视频宽度 --effect-height <整数 [-2147483648 .. 2147483647]> 视频高度 --effect-fft-window {none,hann,flattop,blackmanharris,kaiser} FFT 窗口 --effect-kaiser-param <浮点> Kaiser 窗口参数 光谱分析器: --visual-80-bands, --no-visual-80-bands 显示 80 带替代 20 (默认启用) --visual-peaks, --no-visual-peaks 在分析器中描绘峰值 (默认启用) 频谱仪: --spect-show-original, --no-spect-show-original 启用原始图形光谱 (默认关闭) --spect-show-base, --no-spect-show-base 描绘波段基底 (默认启用) --spect-radius <整数 [-2147483648 .. 2147483647]> 基础像素半径 --spect-sections <整数 [1 .. 2147483647]> 光谱区域 --spect-color <整数 [-2147483648 .. 2147483647]> V 平面颜色 --spect-show-bands, --no-spect-show-bands 在频谱仪中绘制波段 (默认启用) --spect-80-bands, --no-spect-80-bands 显示 80 带替代 20 (默认启用) --spect-separ <整数 [-2147483648 .. 2147483647]> 在波段间的空像素数量。 --spect-amp <整数 [-2147483648 .. 2147483647]> 放大 --spect-show-peaks, --no-spect-show-peaks 在分析器中描绘峰值 (默认启用) --spect-peak-width <整数 [-2147483648 .. 2147483647]> 像素扩展宽度 --spect-peak-height <整数 [-2147483648 .. 2147483647]> 峰值高度 3D OpenGL spectrum visualization (glspectrum) --glspectrum-width <整数 [-2147483648 .. 2147483647]> 视频宽度 --glspectrum-height <整数 [-2147483648 .. 2147483647]> 视频高度 文件夹元数据 (folder) --album-art-filename <字串> 专辑封面文件名 Mosaic 桥流输出 (stream_out_mosaic_bridge) --sout-mosaic-bridge-id <字串> ID --sout-mosaic-bridge-width <整数 [-2147483648 .. 2147483647]> 视频宽度 --sout-mosaic-bridge-height <整数 [-2147483648 .. 2147483647]> 视频高度 --sout-mosaic-bridge-sar <字串> 采样宽高比 --sout-mosaic-bridge-chroma <字串> 图像色度 --sout-mosaic-bridge-vfilter <字串> 视频滤镜 --sout-mosaic-bridge-alpha <整数 [0 .. 255]> 透明 --sout-mosaic-bridge-x <整数 [-2147483648 .. 2147483647]> X 偏移 --sout-mosaic-bridge-y <整数 [-2147483648 .. 2147483647]> Y 偏移 写入串流的统计信息 (stream_out_stats) --sout-stats-output <字串> 输出文件 --sout-stats-prefix <字串> 输出行需要显示的前缀 teletext 动态语言设置 (stream_out_langfromtelx) --sout-langfromtelx-id <整数 [-2147483648 .. 2147483647]> 基本流 ID --sout-langfromtelx-magazine <整数 [-2147483648 .. 2147483647]> 仓库 --sout-langfromtelx-page <整数 [-2147483648 .. 2147483647]> 页 --sout-langfromtelx-row <整数 [-2147483648 .. 2147483647]> 行 通量流输出 (stream_out_es) 一般: --sout-es-access <字串> 输出访问模式 --sout-es-mux <字串> 输出复用器 --sout-es-dst <字串> 输出 URL 音频: --sout-es-access-audio <字串> 音频输出访问模式 --sout-es-mux-audio <字串> 音频输出复用器 --sout-es-dst-audio <字串> 音频输出 URL 视频: --sout-es-access-video <字串> 视频输出访问模块 --sout-es-mux-video <字串> 视频输出复用器 --sout-es-dst-video <字串> 视频输出 URL 录制串流输出 (stream_out_record) --sout-record-dst-prefix <字串> 目标前缀 Chromaprint stream output (stream_out_chromaprint) --duration <整数 [-2147483648 .. 2147483647]> Duration of the fingerprinting 远程音频输出协议 (RAOP) 串流输出 (stream_out_raop) --sout-raop-host <字串> 主机 --sout-raop-password <字串> 密码 --sout-raop-password-file <字串> 密码文件 --sout-raop-volume <整数 [0 .. 255]> 音量 RTP 流输出 (stream_out_rtp) --sout-rtp-dst <字串> 目标 --sout-rtp-sdp <字串> SDP --sout-rtp-mux <字串> 复用器 --sout-rtp-sap, --no-sout-rtp-sap SAP 宣告 (默认关闭) --sout-rtp-name <字串> 会话名称 --sout-rtp-cat <字串> 会话类别 --sout-rtp-description <字串> 会话描述 --sout-rtp-url <字串> 会话 URL --sout-rtp-email <字串> 会话电子邮件 --sout-rtp-phone <字串> 会话电话号码 --sout-rtp-proto {dccp,sctp,tcp,udp,udplite} 传输协议 --sout-rtp-port <整数 [-2147483648 .. 2147483647]> 端口 --sout-rtp-port-audio <整数 [-2147483648 .. 2147483647]> 音频端口 --sout-rtp-port-video <整数 [-2147483648 .. 2147483647]> 视频端口 --sout-rtp-ttl <整数 [-2147483648 .. 2147483647]> 跳数限制 (TTL) --sout-rtp-rtcp-mux, --no-sout-rtp-rtcp-mux RTP/RTCP 多路复用 (默认关闭) --sout-rtp-caching <整数 [-2147483648 .. 2147483647]> 缓存值 (毫秒) --sout-rtp-key <字串> SRTP 密匙 (十六进制) --sout-rtp-salt <字串> SRTP 独立终端 (十六进制) --sout-rtp-mp4a-latm, --no-sout-rtp-mp4a-latm MP4A LATM (默认关闭) --rtsp-timeout <整数 [-2147483648 .. 2147483647]> RTSP 会话超时 (s) --sout-rtsp-user <字串> 用户名 --sout-rtsp-pwd <字串> 密码 显示流输出 (stream_out_display) --sout-display-audio, --no-sout-display-audio 启用音频 (默认启用) --sout-display-video, --no-sout-display-video 启用视频 (默认启用) --sout-display-delay <整数 [-2147483648 .. 2147483647]> 延迟 (ms) 标准流输出 (stream_out_standard) --sout-standard-access <字串> 输出访问模式 --sout-standard-mux <字串> 输出复用器 --sout-standard-dst <字串> 输出目标 --sout-standard-bind <字串> 要绑定的地址 (dst 的补充设置) --sout-standard-path <字串> 用于流的文件名 (用于 dts 的帮助器设置) --sout-standard-sap, --no-sout-standard-sap SAP 宣告 (默认关闭) --sout-standard-name <字串> 会话名称 --sout-standard-description <字串> 会话描述 --sout-standard-url <字串> 会话 URL --sout-standard-email <字串> 会话电子邮件 --sout-standard-phone <字串> 会话电话号码 输出到内存缓冲器的流 (stream_out_smem) --sout-smem-video-prerender-callback <字串> 视频预渲染器回调 --sout-smem-audio-prerender-callback <字串> 音频预渲染器回调 --sout-smem-video-postrender-callback <字串> 视频后渲染器回调 --sout-smem-audio-postrender-callback <字串> 音频后渲染器回调 --sout-smem-video-data <字串> 视频回调数据 --sout-smem-audio-data <字串> 音频回调数据 --sout-smem-time-sync, --no-sout-smem-time-sync 已同步时间的输出 (默认启用) 延迟流 (stream_out_delay) --sout-delay-id <整数 [-2147483648 .. 2147483647]> 基本流 ID --sout-delay-delay <整数 [-2147483648 .. 2147483647]> ES 延迟 (ms) 桥接流输出 (stream_out_bridge) 桥接输出: --sout-bridge-out-id <整数 [-2147483648 .. 2147483647]> ID --sout-bridge-out-in-name <字串> 目标连入桥名称 桥接输入: --sout-bridge-in-delay <整数 [-2147483648 .. 2147483647]> 延迟 --sout-bridge-in-id-offset <整数 [-2147483648 .. 2147483647]> ID 偏移 --sout-bridge-in-name <字串> 当前实例名称 --sout-bridge-in-placeholder, --no-sout-bridge-in-placeholder 缺数据时退回到占位流 (默认关闭) --sout-bridge-in-placeholder-delay <整数 [-2147483648 .. 2147483647]> 占位延迟 --sout-bridge-in-placeholder-switch-on-iframe, --no-sout-bridge-in-placeholder-switch-on-iframe 等出现 I 帧后再切换占位流 (默认启用) 转码流输出 (stream_out_transcode) 视频: --sout-transcode-venc <字串> 视频编码器 --sout-transcode-vcodec <字串> 目标视频编解码器 --sout-transcode-vb <整数 [-2147483648 .. 2147483647]> 视频位率 --sout-transcode-scale <浮点> 视频比例 --sout-transcode-fps <字串> 视频帧率 --sout-transcode-deinterlace, --no-sout-transcode-deinterlace 反交错视频 (默认关闭) --sout-transcode-deinterlace-module {deinterlace,ffmpeg-deinterlace} 反交错模块 --sout-transcode-width <整数 [-2147483648 .. 2147483647]> 视频宽度 --sout-transcode-height <整数 [-2147483648 .. 2147483647]> 视频高度 --sout-transcode-maxwidth <整数 [-2147483648 .. 2147483647]> 最大视频宽度 --sout-transcode-maxheight <整数 [-2147483648 .. 2147483647]> 最大视频高度 --sout-transcode-vfilter <字串> 视频滤镜 音频: --sout-transcode-aenc <字串> 音频编码器 --sout-transcode-acodec <字串> 目标音频编解码器 --sout-transcode-ab <整数 [-2147483648 .. 2147483647]> 音频位率 --sout-transcode-alang <字串> 音频语言 --sout-transcode-channels <整数 [0 .. 9]> 声道 --sout-transcode-samplerate <整数 [0 .. 48000]> 音频采样率 --sout-transcode-afilter <字串> 音频滤镜 覆盖/字幕输出: --sout-transcode-senc <字串> 字幕编码器 --sout-transcode-scodec <字串> 目标字幕编解码器 --sout-transcode-soverlay, --no-sout-transcode-soverlay 目标字幕编解码器 (默认关闭) --sout-transcode-sfilter <字串> 覆盖 屏幕显示: --sout-transcode-osd, --no-sout-transcode-osd OSD 菜单 (默认关闭) 杂项: --sout-transcode-threads <整数 [-2147483648 .. 2147483647]> 线程数量 --sout-transcode-high-priority, --no-sout-transcode-high-priority 高优先级 (默认关闭) 更改通量流的 id (stream_out_setid) 设置 ES id: --sout-setid-id <整数 [-2147483648 .. 2147483647]> 基本流 ID --sout-setid-new-id <整数 [-2147483648 .. 2147483647]> 新建 ES ID 设置 ES 语言: --sout-setlang-id <整数 [-2147483648 .. 2147483647]> 基本流 ID --sout-setlang-lang <字串> 语言 Avformat 去复用器 (avformat) 去复用器: --avformat-format <字串> 格式名称 --avformat-options <字串> Advanced options 复用器: --sout-avformat-mux <字串> Avformat 复用 --sout-avformat-options <字串> Advanced options HEVC/H.265 视频去复用器 (hevc) --hevc-force-fps <浮点> 每秒帧数 H264 视频去复用器 (h264) --h264-fps <浮点> 每秒帧数 raw 音频去复用器 (rawaud) --rawaud-channels <整数 [-2147483648 .. 2147483647]> 声道 --rawaud-samplerate <整数 [-2147483648 .. 2147483647]> 音频采样率 (Hz) --rawaud-fourcc <字串> raw 输入格式的 FOURCC 码 --rawaud-lang <字串> 强制音频语言 VC1 视频去复用器 (vc1) --vc1-fps <浮点> 每秒帧数 文本字幕解析器 (subtitle) --sub-fps <浮点> 每秒帧数 --sub-delay <整数 [-2147483648 .. 2147483647]> 字幕延迟 --sub-type {auto,microdvd,subrip,subviewer,ssa1,ssa2-4,ass,vplayer,sami,dvdsubtitle,mpl2,aqt,pjs,mpsub,jacosub,psb,realtext,dks,subviewer1,vtt} 字幕格式 --sub-description <字串> 字幕描述 MOD 去复用器 (libmodplug) (mod) --mod-noisereduction, --no-mod-noisereduction 噪点消除 (默认启用) --mod-reverb, --no-mod-reverb 混响 (默认关闭) --mod-reverb-level <整数 [0 .. 100]> 混响等级 --mod-reverb-delay <整数 [0 .. 1000]> 混响延迟 --mod-megabass, --no-mod-megabass 超重低音 (默认关闭) --mod-megabass-level <整数 [0 .. 100]> 超重低音等级 --mod-megabass-range <整数 [10 .. 100]> 超重低音截至频率 --mod-surround, --no-mod-surround 环绕声 (默认关闭) --mod-surround-level <整数 [0 .. 100]> 环绕声等级 --mod-surround-delay <整数 [0 .. 1000]> 环绕声延迟 (毫秒) 图像去复用器 (image) --image-id <整数 [-2147483648 .. 2147483647]> ES ID --image-group <整数 [-2147483648 .. 2147483647]> 组 --image-decode, --no-image-decode 解码 (默认启用) --image-chroma <字串> 强制色度 --image-duration <浮点> 以秒为单位的持续时间 --image-fps <字串> 帧率 --image-realtime, --no-image-realtime 实时 (默认关闭) 播放列表 (playlist) --playlist-skip-ads, --no-playlist-skip-ads 跳过广告 (默认启用) --shoutcast-show-adult, --no-shoutcast-show-adult 显示 shoutcast 成人内容 (默认关闭) MPEG-I/II/4 / A52 / DTS / MLP 音频 (es) --es-fps <浮点> 每秒帧数 raw 视频去复用器 (rawvid) --rawvid-fps <字串> 每秒帧数 --rawvid-width <整数 [-2147483648 .. 2147483647]> 宽度 --rawvid-height <整数 [-2147483648 .. 2147483647]> 高度 --rawvid-chroma <字串> 强制色度 (谨慎使用) --rawvid-aspect-ratio <字串> 宽高比 Matroska 串流去复用器 (mkv) --mkv-use-ordered-chapters, --no-mkv-use-ordered-chapters 尊重已排序章节 (默认启用) --mkv-use-chapter-codec, --no-mkv-use-chapter-codec 章节编解码 (默认启用) --mkv-preload-local-dir, --no-mkv-preload-local-dir 预加载同目录中的 MKV 文件 (默认启用) --mkv-seek-percent, --no-mkv-seek-percent 基于百分比非时间的搜索 (默认关闭) --mkv-use-dummy, --no-mkv-use-dummy dummy 元素 (默认关闭) DV (数字视频) 去复用器 (rawdv) --rawdv-hurry-up, --no-rawdv-hurry-up 紧急 (默认关闭) Dirac 视频去复用器 (diracsys) --dirac-dts-offset <整数 [-2147483648 .. 2147483647]> dts 数值调整量 MPEG-PS 去复用器 (ps) --ps-trust-timestamps, --no-ps-trust-timestamps 信任 MPEG 时间戳 (默认启用) AVI 去复用器 (avi) --avi-interleaved, --no-avi-interleaved 强制交错模式 (默认关闭) --avi-index {0 (询问操作), 1 (总是修复), 2 (不修复), 3 (需要时修复)} 强制创建索引 文件转储器 (demuxdump) --demuxdump-access <字串> 转储模块 --demuxdump-file <字串> 转储文件名 --demuxdump-append, --no-demuxdump-append 附加到已存在的文件 (默认关闭) M-JPEG 摄像机去复用器 (mjpeg) --mjpeg-fps <浮点> 每秒帧数 MPEG 传输流去复用器 (ts) --ts-extra-pmt <字串> 扩展 PMT --ts-trust-pcr, --no-ts-trust-pcr 信任串流内的 PCR (默认启用) --ts-es-id-pid, --no-ts-es-id-pid 设置 ES 的 id 为 PID (默认启用) --ts-csa-ck <字串> CSA 密匙 --ts-csa2-ck <字串> 第二 CSA 密匙 --ts-csa-pkt <整数 [-2147483648 .. 2147483647]> 以字节为单位的要解密的数据包大小 --ts-split-es, --no-ts-split-es 分离子流 (默认启用) --ts-seek-percent, --no-ts-seek-percent 基于百分比非时间的搜索 (默认关闭) 文件日志 (logger) --logfile <字串> 日志文件名 --logmode {text,html,syslog} 日志格式 --syslog-ident <字串> Syslog 前缀 --syslog-facility {user,daemon,local0,local1,local2,local3,local4,local5,local6,local7} Syslog 设备 --log-verbose <整数 [-2147483648 .. 2147483647]> 冗长等级 GNU TLS 传输层安全 (gnutls) --gnutls-priorities {PERFORMANCE,NORMAL,SECURE128,SECURE256,EXPORT} TLS 算法优先级 提交已播放的歌曲给 last.fm (audioscrobbler) --lastfm-username <字串> 用户名 --lastfm-password <字串> 密码 --scrobbler-url <字串> Scrobbler 网址 传统 RTSP VoD 服务器 (vod_rtsp) --rtsp-raw-mux <字串> 用于 RAW RTSP 传输的 MUX --rtsp-throttle-users <整数 [-2147483648 .. 2147483647]> 连接的最大数量 --rtsp-session-timeout <整数 [-2147483648 .. 2147483647]> 在 RTSP 会话字串中设置超时选项 音频内存输出 (amem) --amem-format <字串> 采样格式 --amem-rate <整数 [1 .. 352800]> 采样率 --amem-channels <整数 [1 .. 9]> 声道数 ALSA 音频输出 (alsa) --alsa-audio-device <字串> 音频输出设备 --alsa-audio-channels {1 (单声道), 6 (立体声), 102 (4.0 环绕), 4198 (4.1 环绕), 103 (5.0 环绕), 4199 (5.1 环绕), 4967 (环绕 7.1)} 音频输出声道数 --alsa-gain <浮点 [0.000000 .. 8.000000]> 软件增益 文件音频输出 (afile) --audiofile-file <字串> 输出文件 --audiofile-format {u8,s16,float32,spdif} 输出格式 --audiofile-channels <整数 [0 .. 6]> 输出声道数 --audiofile-wav, --no-audiofile-wav 添加 WAVE 头部 (默认启用) 鼠标手势控制接口 (gestures) --gestures-threshold <整数 [-2147483648 .. 2147483647]> 运动限制 (10-100) --gestures-button {left,middle,right} 触发按钮 远程控制接口 (oldrc) --rc-show-pos, --no-rc-show-pos 显示流位置 (默认关闭) --rc-fake-tty, --no-rc-fake-tty 伪装 TTY (默认关闭) --rc-unix <字串> UNIX 端口命令输入 --rc-host <字串> TCP 命令输入 红外远程控制接口 (lirc) --lirc-file <字串> 更改 lirc 配置文件 网络同步 (netsync) --netsync-master, --no-netsync-master 网络主时钟 (默认关闭) --netsync-master-ip <字串> 主服务器 ip 地址 --netsync-timeout <整数 [-2147483648 .. 2147483647]> UDP 超时 (毫秒) LibNotify 提示插件 (notify) --notify-timeout <整数 [-2147483648 .. 2147483647]> 超时 (毫秒) 时间码子画面基本流生成器 (timecode) --timecode-fps {24/1,25/1,30000/1001,30/1} 帧率 HD-SDI 输入 (linsys_hdsdi) --linsys-hdsdi-link <整数 [-2147483648 .. 2147483647]> 连接 # --linsys-hdsdi-id-video <整数 [-2147483648 .. 2147483647]> 视频 ID --linsys-hdsdi-aspect-ratio <字串> 宽高比 --linsys-hdsdi-audio <字串> 音频配置 HTTP 输入 (http) --http-proxy <字串> HTTP 代理 --http-proxy-pwd <字串> HTTP 代理密码 --http-referrer <字串> HTTP 引用来源值 --http-user-agent <字串> 用户代理 --http-reconnect, --no-http-reconnect 自动重新连接 (默认关闭) --http-continuous, --no-http-continuous 连续流 (默认关闭) --http-forward-cookies, --no-http-forward-cookies 转发 Cookies (默认启用) RDP 远程桌面 (rdp) --rdp-user <字串> RDP 认证用户名 --rdp-password <字串> RDP 认证密码 --rdp-fps <浮点> 帧率 --rdp-encrypt, --no-rdp-encrypt 加密连接 (默认关闭) DVB input with v4l2 support (dvb) --dvb-probe, --no-dvb-probe Probe DVB card for capabilities (默认启用) --dvb-satellite <字串> Satellite scanning config 蓝光光碟支持 (libbluray) (libbluray) --bluray-menu, --no-bluray-menu 蓝光菜单 (默认关闭) --bluray-region {A,B,C} 区域码 VNC 客户端访问 (vnc) --rfb-user <字串> 用户名 --rfb-password <字串> 密码 --rfb-x509-ca <字串> X.509 证书颁发机构 --rfb-x509-crl <字串> X.509 证书废止列表 --rfb-x509-client-cert <字串> X.509 客户端证书 --rfb-x509-client-key <字串> X.509 客户端 --rfb-fps <浮点> 帧率 --rfb-chroma {RV32,RV24,RV16,RGB8} 帧缓冲深度 --rfb-compress-level <整数 [0 .. 9]> 压缩级别 --rfb-quality-level <整数 [1 .. 9]> 图像质量 SMB 输入 (smb) Samba (Windows 网络共享) 输入 --smb-user <字串> SMB 用户名 --smb-pwd <字串> SMB 密码 --smb-domain <字串> SMB 域 Video4Linux 输入 (v4l2) 视频输入: --v4l2-dev <字串> 视频捕获设备 --v4l2-vbidev <字串> VBI 捕获设备 --v4l2-standard {,ALL,PAL,PAL_BG,PAL_DK,NTSC,SECAM,SECAM_DK,MTS,525_60,625_50,ATSC,B,G,H,L,GH,DK,BG,MN,PAL_B,PAL_B1,PAL_G,PAL_H,PAL_I,PAL_D,PAL_D1,PAL_K,PAL_M,PAL_N,PAL_Nc,PAL_60,NTSC_M,NTSC_M_JP,NTSC_443,NTSC_M_KR,SECAM_B,SECAM_D,SECAM_G,SECAM_H,SECAM_K,SECAM_K1,SECAM_L,SECAM_LC,ATSC_8_VSB,ATSC_16_VSB} 标准 --v4l2-chroma <字串> 适配输入色度格式 --v4l2-input <整数 [0 .. 4294967294]> 输入 --v4l2-audio-input <整数 [-1 .. 4294967294]> 音频输入 --v4l2-width <整数 [0 .. 4096]> 宽度 --v4l2-height <整数 [0 .. 4096]> 高度 --v4l2-aspect-ratio <字串> 图像宽高比 n:m --v4l2-fps <字串> 帧率 调谐器: --v4l2-radio-dev <字串> 电台设备 --v4l2-tuner-frequency <整数 [-1 .. 4294967294]> 频率 --v4l2-tuner-audio-mode {0 (单声道), 1 (立体声), 3 (主选语言), 2 (次选语言或节目), 4 (双单声道)} 音频模式 控制: --v4l2-controls-reset, --no-v4l2-controls-reset 重置控件 (默认关闭) --v4l2-brightness <整数 [-2147483648 .. 2147483647]> 亮度 --v4l2-brightness-auto {-1 (未指定), 0 (关), 1 (开)} 自动亮度 --v4l2-contrast <整数 [-2147483648 .. 2147483647]> 对比度 --v4l2-saturation <整数 [-2147483648 .. 2147483647]> 饱和度 --v4l2-hue <整数 [-2147483648 .. 2147483647]> 色调 --v4l2-hue-auto {-1 (未指定), 0 (关), 1 (开)} 自动色调 --v4l2-white-balance-temperature <整数 [-1 .. 6500]> 白平衡温度 (K) --v4l2-auto-white-balance {-1 (未指定), 0 (关), 1 (开)} 自动白平衡 --v4l2-red-balance <整数 [-2147483648 .. 2147483647]> 红平衡 --v4l2-blue-balance <整数 [-2147483648 .. 2147483647]> 蓝平衡 --v4l2-gamma <整数 [-2147483648 .. 2147483647]> 伽玛 --v4l2-autogain {-1 (未指定), 0 (关), 1 (开)} 自动增益 --v4l2-gain <整数 [-2147483648 .. 2147483647]> 增益 --v4l2-sharpness <整数 [-2147483648 .. 2147483647]> 锐化 --v4l2-chroma-gain <整数 [-2147483648 .. 2147483647]> 色度增益 --v4l2-chroma-gain-auto <整数 [-2147483648 .. 2147483647]> 自动色度增益 --v4l2-power-line-frequency {-1 (未指定), 0 (关), 1 (50 Hz), 2 (60 Hz), 3 (自动)} 电源线频率 --v4l2-backlight-compensation <整数 [-2147483648 .. 2147483647]> 背光补偿 --v4l2-band-stop-filter <整数 [-2147483648 .. 2147483647]> 带阻滤镜 --v4l2-hflip, --no-v4l2-hflip 水平倒转 (默认关闭) --v4l2-vflip, --no-v4l2-vflip 垂直倒转 (默认关闭) --v4l2-rotate <整数 [-1 .. 359]> 旋转 (度) --v4l2-color-killer {-1 (未指定), 0 (关), 1 (开)} 消色器 --v4l2-color-effect {-1 (未指定), 0 (无), 1 (黑白), 2 (深褐), 3 (反色), 4 (浮雕), 5 (素描), 6 (天蓝), 7 (草绿), 8 (皮肤白), 9 (明亮)} 色彩效果 --v4l2-audio-volume <整数 [-2147483648 .. 2147483647]> 音频音量 --v4l2-audio-balance <整数 [-2147483648 .. 2147483647]> 音频均衡 --v4l2-audio-mute, --no-v4l2-audio-mute 静音 (默认关闭) --v4l2-audio-bass <整数 [-2147483648 .. 2147483647]> 低音层级 --v4l2-audio-treble <整数 [-2147483648 .. 2147483647]> 高音层级 --v4l2-audio-loudness, --no-v4l2-audio-loudness 响度模式 (默认关闭) --v4l2-set-ctrls <字串> v4l2 驱动控制 VDR 录制 (vdr) 对 VDR 录像 (http://www.tvdr.de/) 的支持。 --vdr-chapter-offset <整数 [-2147483648 .. 2147483647]> 章节偏移 (ms) --vdr-fps <浮点 [1.000000 .. 1000.000000]> 帧率 共享的内存帧缓冲 (shm) --shm-fps <浮点> 帧率 --shm-depth {0 (XWD 文件 (自动侦测)), 8 (8 位), 15 (15 位), 16 (16 位), 24 (24 位), 32 (32 位)} 帧缓冲深度 --shm-width <整数 [0 .. 65535]> 帧缓冲宽度 --shm-height <整数 [0 .. 65535]> 帧缓冲高度 --shm-file <字串> 帧缓冲文件 --shm-id <整数 [-2147483648 .. 2147483647]> 帧缓冲剪辑 ID DVDRead 输入 (无菜单支持) (dvdread) --dvdread-angle <整数 [-2147483648 .. 2147483647]> DVD 视角 文件输入 (filesystem) 目录: --recursive {none,collapse,expand} 子目录行为 --ignore-filetypes <字串> 已忽略扩展 --directory-sort {collate,version,none} 目录排序顺序 音频 CD 输入 (cdda) [cdda:][设备][@[音轨]] --cdda-track <整数 [-2147483648 .. 2147483647]> --cdda-first-sector <整数 [-2147483648 .. 2147483647]> --cdda-last-sector <整数 [-2147483648 .. 2147483647]> --cddb-server <字串> CDDB 服务器 --cddb-port <整数 [1 .. 65535]> CDDB 端口 FTP 输入 (ftp) --ftp-user <字串> FTP 用户名 --ftp-pwd <字串> FTP 密码 --ftp-account <字串> FTP 帐号 实时协议 (RTP) 输入 (rtp) --rtcp-port <整数 [0 .. 65535]> RTCP (本地) 端口 --srtp-key <字串> SRTP 密匙 (十六进制) --srtp-salt <字串> SRTP 独立终端 (十六进制) --rtp-max-src <整数 [1 .. 255]> 最大 RTP 源 --rtp-timeout <整数 [-2147483648 .. 2147483647]> RTP 源超时 (秒) --rtp-max-dropout <整数 [0 .. 32767]> 最大 RTP 丢弃序号 --rtp-max-misorder <整数 [0 .. 32767]> 最大 RTP 混淆序号 --rtp-dynamic-pt {theora} 动态负载假定的 RTP 负载格式 数字电视与广播 (dtv) --dvb-adapter <整数 [ |