summaryrefslogtreecommitdiff
path: root/skel/.config/vlc/vlcrc
blob: bfc380af3a3f5a83f83dc9783ea91f6d7343f692 (plain)
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
###
###  VLC media player - version 0.9.0-svn Grishenko - (c) 1996-2008 the VideoLAN team
###

###
### lines begining with a '#' character are comments
###

[main] # main program

# boolean (Enable audio)
#audio=1

# integer (Default audio volume)
#volume=256

# integer (Audio output volume step)
#volume-step=32

# integer (Audio output frequency (Hz))
#aout-rate=-1

# boolean (High quality audio resampling)
#hq-resampling=1

# boolean (Use S/PDIF when available)
#spdif=0

# integer (Force detection of Dolby Surround)
#force-dolby-surround=0

# integer (Audio desynchronization compensation)
#audio-desync=0

# string (Replay gain mode)
#audio-replay-gain-mode=none

# float (Replay preamp)
#audio-replay-gain-preamp=0.000000

# float (Default replay gain)
#audio-replay-gain-default=-7.000000

# boolean (Peak protection)
#audio-replay-gain-peak-protection=1

# string (Audio output module)
#aout=

# string (Audio filters)
#audio-filter=

# string (Audio visualizations )
#audio-visual=

# boolean (Enable video)
#video=1

# boolean (Grayscale video output)
#grayscale=0

# boolean (Fullscreen video output)
#fullscreen=0

# boolean (Embedded video)
#embedded-video=1

# boolean (Drop late frames)
#drop-late-frames=1

# boolean (Skip frames)
#skip-frames=1

# boolean (Quiet synchro)
#quiet-synchro=0

# boolean (Overlay video output)
#overlay=1

# boolean (Always on top)
#video-on-top=0

# boolean (Disable screensaver)
#disable-screensaver=1

# boolean (Show media title on video.)
#video-title-show=1

# integer (Show video title for x miliseconds.)
#video-title-timeout=5000

# integer (Position of video title.)
#video-title-position=8

# string (Video snapshot directory (or filename))
#snapshot-path=

# string (Video snapshot file prefix)
#snapshot-prefix=vlcsnap-

# string (Video snapshot format)
#snapshot-format=png

# boolean (Display video snapshot preview)
#snapshot-preview=1

# boolean (Use sequential numbers instead of timestamps)
#snapshot-sequential=0

# integer (Video snapshot width)
#snapshot-width=320

# integer (Video snapshot height)
#snapshot-height=200

# integer (Video width)
#width=-1

# integer (Video height)
#height=-1

# integer (Video X coordinate)
#video-x=-1

# integer (Video Y coordinate)
#video-y=-1

# string (Video cropping)
#crop=

# string (Custom crop ratios list)
#custom-crop-ratios=

# string (Source aspect ratio)
#aspect-ratio=

# string (Monitor pixel aspect ratio)
#monitor-par=

# string (Custom aspect ratios list)
#custom-aspect-ratios=

# boolean (Fix HDTV height)
#hdtv-fix=1

# boolean (Window decorations)
#video-deco=1

# string (Video title)
#video-title=

# integer (Video alignment)
#align=0

# float (Zoom video)
#zoom=1.000000

# string (Video output module)
#vout=

# string (Video filter module)
#video-filter=

# string ((null))
#vout-filter=

# boolean (Enable sub-pictures)
#spu=1

# boolean (On Screen Display)
#osd=1

# string (Text rendering module)
#text-renderer=

# string (Use subtitle file)
#sub-file=

# boolean (Autodetect subtitle files)
#sub-autodetect-file=1

# integer (Subtitle autodetection fuzziness)
#sub-autodetect-fuzzy=3

# string (Subtitle autodetection paths)
#sub-autodetect-path=./Subtitles, ./subtitles

# integer (Force subtitle position)
#sub-margin=0

# string (Subpictures filter module)
#sub-filter=

# boolean (France)
#france=0

# integer (Program)
#program=0

# string (Programs)
#programs=

# integer (Audio track)
#audio-track=-1

# integer (Subtitles track)
#sub-track=-1

# string (Audio language)
#audio-language=

# string (Subtitle language)
#sub-language=

# integer (Audio track ID)
#audio-track-id=-1

# integer (Subtitles track ID)
#sub-track-id=-1

# integer (Input repetitions)
#input-repeat=0

# integer (Start time)
#start-time=0

# integer (Stop time)
#stop-time=0

# integer (Run time)
#run-time=0

# string (Input list)
#input-list=

# string (Input slave (experimental))
#input-slave=

# string (Bookmarks list for a stream)
#bookmarks=

# string (DVD device)
#dvd=/dev/dvd

# string (VCD device)
vcd=/dev/sr0

# string (Audio CD device)
cd-audio=/dev/sr0

# integer (UDP port)
#server-port=1234

# integer (MTU of the network interface)
#mtu=1400

# boolean (Force IPv6)
#ipv6=0

# boolean (Force IPv4)
#ipv4=0

# integer (TCP connection timeout)
#ipv4-timeout=5000

# string (SOCKS server)
#socks=

# string (SOCKS user name)
#socks-user=

# string (SOCKS password)
#socks-pwd=

# string (Title metadata)
#meta-title=

# string (Author metadata)
#meta-author=

# string (Artist metadata)
#meta-artist=

# string (Genre metadata)
#meta-genre=

# string (Copyright metadata)
#meta-copyright=

# string (Description metadata)
#meta-description=

# string (Date metadata)
#meta-date=

# string (URL metadata)
#meta-url=

# integer (Clock reference average counter)
#cr-average=40

# integer (Clock synchronisation)
#clock-synchro=-1

# boolean (Network synchronisation)
#network-synchronisation=0

# string (Preferred decoders list)
#codec=

# string (Preferred encoders list)
#encoder=

# string (Access module)
#access=

# string (Access filter module)
#access-filter=

# string (Demux module)
#demux=

# boolean (Prefer system plugins over vlc)
#prefer-system-codecs=0

# string (Default stream output chain)
#sout=

# boolean (Display while streaming)
#sout-display=0

# boolean (Keep stream output open)
#sout-keep=1

# boolean (Enable streaming of all ES)
#sout-all=0

# boolean (Enable audio stream output)
#sout-audio=1

# boolean (Enable video stream output)
#sout-video=1

# boolean (Enable SPU stream output)
#sout-spu=1

# integer (Stream output muxer caching (ms))
#sout-mux-caching=1500

# string (VLM configuration file)
#vlm-conf=

# string (Mux module)
#mux=

# string (Access output module)
#access_output=

# integer (Hop limit (TTL))
#ttl=-1

# string (Multicast output interface)
#miface=

# string (IPv4 multicast output interface address)
#miface-addr=

# integer (DiffServ Code Point)
#dscp=0

# string (Preferred packetizer list)
#packetizer=

# boolean (Control SAP flow)
#sap-flow-control=0

# integer (SAP announcement interval)
#sap-interval=5

# boolean (Enable FPU support)
#fpu=1

# boolean (Enable CPU MMX support)
#mmx=1

# boolean (Enable CPU 3D Now! support)
#3dn=1

# boolean (Enable CPU MMX EXT support)
#mmxext=1

# boolean (Enable CPU SSE support)
#sse=1

# boolean (Enable CPU SSE2 support)
#sse2=1

# string (Memory copy module)
#memcpy=

# boolean (Use a plugins cache)
#plugins-cache=1

# string (Modules search path)
#plugin-path=

# boolean (Minimize number of threads)
#minimize-threads=0

# integer (Policy for handling unsafe options.)
#security-policy=2

# boolean (Allow real-time priority)
#rt-priority=0

# integer (Adjust VLC priority)
#rt-offset=0

# boolean (Allow only one running instance)
#one-instance=0

# boolean (Inhibits the power management daemon during playback.)
#inhibit=1

# boolean (Play files randomly forever)
#random=0

# boolean (Repeat all)
#loop=0

# boolean (Repeat current item)
#repeat=0

# boolean (Play and exit)
#play-and-exit=0

# boolean (Play and stop)
#play-and-stop=0

# boolean (Use media library)
#media-library=1

# integer (Use playlist tree)
#playlist-tree=0

# string (Default stream)
#open=

# boolean (Automatically preparse files)
#auto-preparse=1

# integer (Authorise meta information fetching)
#fetch-meta=1

# integer (Album art policy)
#album-art=0

# string (Services discovery modules)
#services-discovery=

# integer (Verbosity (0,1,2))
#verbose=0

# boolean (Be quiet)
#quiet=0

# boolean (Run as daemon process)
#daemon=0

# string (Write process id to file)
#pidfile=

# boolean (Log to file)
#file-logging=0

# boolean (Log to syslog)
#syslog=0

# boolean (Color messages)
#color=1

# boolean (Show advanced options)
#advanced=0

# boolean (Interface interaction)
#interact=1

# boolean (Show interface with mouse)
#show-intf=0

# boolean (Collect statistics)
#stats=1

# string (Interface module)
#intf=

# string (Extra interface modules)
#extraintf=

# string (Control interfaces)
#control=

# key (Fullscreen)
#key-toggle-fullscreen=f

# key (Leave fullscreen)
#key-leave-fullscreen=Esc

# key (Play/Pause)
#key-play-pause=Space

# key (Pause only)
#key-pause=Unset

# key (Play only)
#key-play=Unset

# key (Faster)
#key-faster=+

# key (Slower)
#key-slower=-

# key (Next)
#key-next=n

# key (Previous)
#key-prev=p

# key (Stop)
#key-stop=s

# key (Position)
#key-position=t

# key (Very short backwards jump)
#key-jump-extrashort=Shift-Left

# key (Very short forward jump)
#key-jump+extrashort=Shift-Right

# key (Short backwards jump)
#key-jump-short=Alt-Left

# key (Short forward jump)
#key-jump+short=Alt-Right

# key (Medium backwards jump)
#key-jump-medium=Ctrl-Left

# key (Medium forward jump)
#key-jump+medium=Ctrl-Right

# key (Long backwards jump)
#key-jump-long=Alt-Ctrl-Left

# key (Long forward jump)
#key-jump+long=Alt-Ctrl-Right

# key (Activate)
#key-nav-activate=Enter

# key (Navigate up)
#key-nav-up=Up

# key (Navigate down)
#key-nav-down=Down

# key (Navigate left)
#key-nav-left=Left

# key (Navigate right)
#key-nav-right=Right

# key (Go to the DVD menu)
#key-disc-menu=Alt-r

# key (Select previous DVD title)
#key-title-prev=Alt-o

# key (Select next DVD title)
#key-title-next=Alt-b

# key (Select prev DVD chapter)
#key-chapter-prev=Alt-p

# key (Select next DVD chapter)
#key-chapter-next=Alt-n

# key (Quit)
#key-quit=Ctrl-q

# key (Volume up)
#key-vol-up=Ctrl-Up

# key (Volume down)
#key-vol-down=Ctrl-Down

# key (Mute)
#key-vol-mute=m

# key (Subtitle delay up)
#key-subdelay-up=h

# key (Subtitle delay down)
#key-subdelay-down=g

# key (Audio delay up)
#key-audiodelay-up=k

# key (Audio delay down)
#key-audiodelay-down=j

# key (Cycle audio track)
#key-audio-track=b

# key (Cycle subtitle track)
#key-subtitle-track=v

# key (Cycle source aspect ratio)
#key-aspect-ratio=a

# key (Cycle video crop)
#key-crop=c

# key (Cycle deinterlace modes)
#key-deinterlace=d

# key (Show interface)
#key-intf-show=i

# key (Hide interface)
#key-intf-hide=

# key (Take video snapshot)
#key-snapshot=Alt-Ctrl-s

# key (Go back in browsing history)
#key-history-back=Alt-g

# key (Go forward in browsing history)
#key-history-forward=Alt-h

# key (Record)
#key-record=Shift-Ctrl-r

# key (Dump)
#key-dump=Shift-Ctrl-d

# key (Zoom)
#key-zoom=z

# key (Un-Zoom)
#key-unzoom=Shift-z

# key (Toggle wallpaper mode in video output)
#key-wallpaper=w

# key (Display OSD menu on top of video output)
#key-menu-on=Alt-m

# key (Do not display OSD menu on video output)
#key-menu-off=Alt-Shift-m

# key (Highlight widget on the right)
#key-menu-right=Alt-Shift-Right

# key (Highlight widget on the left)
#key-menu-left=Alt-Shift-Left

# key (Highlight widget on top)
#key-menu-up=Alt-Shift-Up

# key (Highlight widget below)
#key-menu-down=Alt-Shift-Down

# key (Select current widget)
#key-menu-select=Alt-Shift-Enter

# key (Crop one pixel from the top of the video)
#key-crop-top=Alt-i

# key (Uncrop one pixel from the top of the video)
#key-uncrop-top=Alt-Shift-i

# key (Crop one pixel from the left of the video)
#key-crop-left=Alt-j

# key (Uncrop one pixel from the left of the video)
#key-uncrop-left=Alt-Shift-j

# key (Crop one pixel from the bottom of the video)
#key-crop-bottom=Alt-k

# key (Uncrop one pixel from the bottom of the video)
#key-uncrop-bottom=Alt-Shift-k

# key (Crop one pixel from the right of the video)
#key-crop-right=Alt-l

# key (Uncrop one pixel from the right of the video)
#key-uncrop-right=Alt-Shift-l

# key (Random)
#key-random=r

# key (Normal/Repeat/Loop)
#key-loop=l

# integer (Very short jump length)
#extrashort-jump-size=3

# integer (Short jump length)
#short-jump-size=10

# integer (Medium jump length)
#medium-jump-size=60

# integer (Long jump length)
#long-jump-size=300

# key (Set playlist bookmark 1)
#key-set-bookmark1=Ctrl-F1

# key (Set playlist bookmark 2)
#key-set-bookmark2=Ctrl-F2

# key (Set playlist bookmark 3)
#key-set-bookmark3=Ctrl-F3

# key (Set playlist bookmark 4)
#key-set-bookmark4=Ctrl-F4

# key (Set playlist bookmark 5)
#key-set-bookmark5=Ctrl-F5

# key (Set playlist bookmark 6)
#key-set-bookmark6=Ctrl-F6

# key (Set playlist bookmark 7)
#key-set-bookmark7=Ctrl-F7

# key (Set playlist bookmark 8)
#key-set-bookmark8=Ctrl-F8

# key (Set playlist bookmark 9)
#key-set-bookmark9=Ctrl-F9

# key (Set playlist bookmark 10)
#key-set-bookmark10=Ctrl-F10

# key (Play playlist bookmark 1)
#key-play-bookmark1=F1

# key (Play playlist bookmark 2)
#key-play-bookmark2=F2

# key (Play playlist bookmark 3)
#key-play-bookmark3=F3

# key (Play playlist bookmark 4)
#key-play-bookmark4=F4

# key (Play playlist bookmark 5)
#key-play-bookmark5=F5

# key (Play playlist bookmark 6)
#key-play-bookmark6=F6

# key (Play playlist bookmark 7)
#key-play-bookmark7=F7

# key (Play playlist bookmark 8)
#key-play-bookmark8=F8

# key (Play playlist bookmark 9)
#key-play-bookmark9=F9

# key (Play playlist bookmark 10)
#key-play-bookmark10=F10

# string (Playlist bookmark 1)
#bookmark1=

# string (Playlist bookmark 2)
#bookmark2=

# string (Playlist bookmark 3)
#bookmark3=

# string (Playlist bookmark 4)
#bookmark4=

# string (Playlist bookmark 5)
#bookmark5=

# string (Playlist bookmark 6)
#bookmark6=

# string (Playlist bookmark 7)
#bookmark7=

# string (Playlist bookmark 8)
#bookmark8=

# string (Playlist bookmark 9)
#bookmark9=

# string (Playlist bookmark 10)
#bookmark10=

[access_output_file] # File stream output

# boolean (Append to file)
#sout-file-append=0

[access_output_udp] # UDP stream output

# integer (Caching value (ms))
#sout-udp-caching=300

# integer (Group packets)
#sout-udp-group=1

# boolean (Automatic multicast streaming)
#sout-udp-auto-mcast=0

[alphamask] # Alpha mask video filter

# string (Transparency mask)
#alphamask-mask=

[clone] # Clone video filter

# integer (Number of clones)
#clone-count=2

# string (Video output modules)
#clone-vout-list=

[gaussianblur] # Gaussian blur video filter

# float (Gaussian's std deviation)
#gaussianblur-sigma=2.000000

[colorthres] # Color threshold filter

# integer (Color)
#colorthres-color=16711680

# integer (Saturaton threshold)
#colorthres-saturationthres=20

# integer (Similarity threshold)
#colorthres-similaritythres=15

[extract] # Extract RGB component video filter

# integer (RGB component to extract)
#extract-component=16711680

[mosaic] # Mosaic video sub filter

# integer (Transparency)
#mosaic-alpha=255

# integer (Height)
#mosaic-height=100

# integer (Width)
#mosaic-width=100

# integer (Mosaic alignment)
#mosaic-align=5

# integer (Top left corner X coordinate)
#mosaic-xoffset=0

# integer (Top left corner Y coordinate)
#mosaic-yoffset=0

# integer (Border width)
#mosaic-borderw=0

# integer (Border height)
#mosaic-borderh=0

# integer (Positioning method)
#mosaic-position=0

# integer (Number of rows)
#mosaic-rows=2

# integer (Number of columns)
#mosaic-cols=2

# boolean (Keep aspect ratio)
#mosaic-keep-aspect-ratio=0

# boolean (Keep original size)
#mosaic-keep-picture=0

# string (Elements order)
#mosaic-order=

# string (Offsets in order)
#mosaic-offsets=

# integer (Delay)
#mosaic-delay=0

[sharpen] # Augment contrast between contours.

# float (Sharpen strength (0-2))
#sharpen-sigma=0.050000

[gradient] # Gradient video filter

# string (Distort mode)
#gradient-mode=gradient

# integer (Gradient image type)
#gradient-type=0

# boolean (Apply cartoon effect)
#gradient-cartoon=1

[adjust] # Image properties filter

# float (Image contrast (0-2))
#contrast=1.000000

# float (Image brightness (0-2))
#brightness=1.000000

# integer (Image hue (0-360))
#hue=0

# float (Image saturation (0-3))
#saturation=1.000000

# float (Image gamma (0-10))
#gamma=1.000000

# boolean (Brightness threshold)
#brightness-threshold=0

[wall] # Wall video filter

# integer (Number of columns)
#wall-cols=3

# integer (Number of rows)
#wall-rows=3

# string (Active windows)
#wall-active=

# string (Element aspect ratio)
#wall-element-aspect=4:3

[puzzle] # Puzzle interactive game video filter

# integer (Number of puzzle rows)
#puzzle-rows=4

# integer (Number of puzzle columns)
#puzzle-cols=4

# boolean (Make one tile a black slot)
#puzzle-black-slot=0

[transform] # Video transformation filter

# string (Transform type)
#transform-type=90

[erase] # Erase video filter

# string (Image mask)
#erase-mask=

# integer (X coordinate)
#erase-x=0

# integer (Y coordinate)
#erase-y=0

[panoramix] # Panoramix: wall with overlap video filter

# integer (Number of columns)
#panoramix-cols=-1

# integer (Number of rows)
#panoramix-rows=-1

# boolean (Offset X offset (automatic compensation))
#panoramix-offset-x=1

# integer (length of the overlapping area (in %))
#panoramix-bz-length=100

# integer (height of the overlapping area (in %))
#panoramix-bz-height=100

# boolean (Attenuation)
#panoramix-attenuate=1

# integer (Attenuation, begin (in %))
#panoramix-bz-begin=0

# integer (Attenuation, middle (in %))
#panoramix-bz-middle=50

# integer (Attenuation, end (in %))
#panoramix-bz-end=100

# integer (middle position (in %))
#panoramix-bz-middle-pos=50

# float (Gamma (Red) correction)
#panoramix-bz-gamma-red=1.000000

# float (Gamma (Green) correction)
#panoramix-bz-gamma-green=1.000000

# float (Gamma (Blue) correction)
#panoramix-bz-gamma-blue=1.000000

# integer (Black Crush for Red)
#panoramix-bz-blackcrush-red=140

# integer (Black Crush for Green)
#panoramix-bz-blackcrush-green=140

# integer (Black Crush for Blue)
#panoramix-bz-blackcrush-blue=140

# integer (White Crush for Red)
#panoramix-bz-whitecrush-red=200

# integer (White Crush for Green)
#panoramix-bz-whitecrush-green=200

# integer (White Crush for Blue)
#panoramix-bz-whitecrush-blue=200

# integer (Black Level for Red)
#panoramix-bz-blacklevel-red=150

# integer (Black Level for Green)
#panoramix-bz-blacklevel-green=150

# integer (Black Level for Blue)
#panoramix-bz-blacklevel-blue=150

# integer (White Level for Red)
#panoramix-bz-whitelevel-red=0

# integer (White Level for Green)
#panoramix-bz-whitelevel-green=0

# integer (White Level for Blue)
#panoramix-bz-whitelevel-blue=0

# boolean (Xinerama option)
#panoramix-xinerama=1

# string (Active windows)
#panoramix-active=

[crop] # Crop video filter

# string (Crop geometry (pixels))
#crop-geometry=

# boolean (Automatic cropping)
#autocrop=0

# integer (Ratio max (x 1000))
#autocrop-ratio-max=2405

# integer (Manual ratio)
#crop-ratio=0

# integer (Number of images for change)
#autocrop-time=25

# integer (Number of lines for change)
#autocrop-diff=16

# integer (Number of non black pixels )
#autocrop-non-black-pixels=3

# integer (Skip percentage (%))
#autocrop-skip-percent=17

# integer (Luminance threshold )
#autocrop-luminance-threshold=40

[motionblur] # Motion blur filter

# integer (Blur factor (1-127))
#blur-factor=80

[bluescreen] # Bluescreen video filter

# integer (Bluescreen U value)
#bluescreen-u=120

# integer (Bluescreen V value)
#bluescreen-v=90

# integer (Bluescreen U tolerance)
#bluescreen-ut=17

# integer (Bluescreen V tolerance)
#bluescreen-vt=17

[marq] # Marquee display

# string (Text)
#marq-marquee=VLC

# integer (X offset)
#marq-x=0

# integer (Y offset)
#marq-y=0

# integer (Marquee position)
#marq-position=-1

# integer (Opacity)
#marq-opacity=255

# integer (Color)
#marq-color=16777215

# integer (Font size, pixels)
#marq-size=-1

# integer (Timeout)
#marq-timeout=0

[deinterlace] # Deinterlacing video filter

# string (Deinterlace mode)
#deinterlace-mode=discard

# string (Streaming deinterlace mode)
#sout-deinterlace-mode=blend

[rss] # RSS and Atom feed display

# string (Feed URLs)
#rss-urls=rss

# integer (X offset)
#rss-x=0

# integer (Y offset)
#rss-y=0

# integer (Text position)
#rss-position=-1

# integer (Opacity)
#rss-opacity=255

# integer (Color)
#rss-color=16777215

# integer (Font size, pixels)
#rss-size=-1

# integer (Speed of feeds)
#rss-speed=100000

# integer (Max length)
#rss-length=60

# integer (Refresh time)
#rss-ttl=1800

# boolean (Feed images)
#rss-images=1

# integer (Title display mode)
#rss-title=-1

[osdmenu] # On Screen Display menu

# integer (X coordinate)
#osdmenu-x=-1

# integer (Y coordinate)
#osdmenu-y=-1

# integer (Menu position)
#osdmenu-position=8

# string (Configuration file)
#osdmenu-file=share/osdmenu/default.cfg

# string (Path to OSD menu images)
#osdmenu-file-path=

# integer (Menu timeout)
#osdmenu-timeout=15

# integer (Menu update interval)
#osdmenu-update=300

# integer (Alpha transparency value (default 255))
#osdmenu-alpha=255

[logo] # Logo video filter

# string (Logo filenames)
#logo-file=

# integer (X coordinate)
#logo-x=0

# integer (Y coordinate)
#logo-y=0

# integer (Logo individual image time in ms)
#logo-delay=1000

# integer (Logo animation # of loops)
#logo-repeat=-1

# integer (Transparency of the logo)
#logo-transparency=255

# integer (Logo position)
#logo-position=-1

[rotate] # Rotate video filter

# integer (Angle in degrees)
#rotate-angle=30

[demuxdump] # File dumper

# string (Dump filename)
#demuxdump-file=stream-demux.dump

# boolean (Append to existing file)
#demuxdump-append=0

[rawdv] # DV (Digital Video) demuxer

# boolean (Hurry up)
#rawdv-hurry-up=0

[avi] # AVI demuxer

# boolean (Force interleaved method)
#avi-interleaved=0

# integer (Force index creation)
#avi-index=0

[mkv] # Matroska stream demuxer

# boolean (Ordered chapters)
#mkv-use-ordered-chapters=1

# boolean (Chapter codecs)
#mkv-use-chapter-codec=1

# boolean (Preload Directory)
#mkv-preload-local-dir=1

# boolean (Seek based on percent not time)
#mkv-seek-percent=0

# boolean (Dummy Elements)
#mkv-use-dummy=0

[rawvid] # Raw video demuxer

# float (Frames per Second)
#rawvid-fps=0.000000

# integer (Width)
#rawvid-width=0

# integer (Height)
#rawvid-height=0

# string (Force chroma (Use carefully))
#rawvid-chroma=

# string (Aspect ratio)
#rawvid-aspect-ratio=

[playlist] # Playlist

# boolean (Auto start)
#playlist-autostart=1

# integer ((null))
#parent-item=0

# boolean (Skip ads)
#playlist-skip-ads=1

# boolean (Enable parsing of EXTVLCOPT: options)
#m3u-extvlcopt=0

# boolean (Show shoutcast adult content)
#shoutcast-show-adult=0

[subtitle] # Text subtitles parser

# float (Frames per second)
#sub-fps=0.000000

# integer (Subtitles delay)
#sub-delay=0

# string (Subtitles format)
#sub-type=auto

[vc1] # VC1 video demuxer

# float (Frames per Second)
#vc1-fps=25.000000

[ps] # MPEG-PS demuxer

# boolean (Trust MPEG timestamps)
#ps-trust-timestamps=1

[m4v] # MPEG-4 video demuxer

# float (Frames per Second)
#m4v-fps=25.000000

[ts] # MPEG Transport Stream demuxer

# string (Extra PMT)
#ts-extra-pmt=

# boolean (Set id of ES to PID)
#ts-es-id-pid=1

# string (Fast udp streaming)
#ts-out=

# integer (MTU for out mode)
#ts-out-mtu=1400

# string (CSA ck)
#ts-csa-ck=

# integer (Packet size in bytes to decrypt)
#ts-csa-pkt=188

# boolean (Silent mode)
#ts-silent=0

# string (Filename of dump)
#ts-dump-file=

# boolean (Append)
#ts-dump-append=0

# integer (Dump buffer size)
#ts-dump-size=16384

[h264] # H264 video demuxer

# float (Frames per Second)
#h264-fps=25.000000

[mjpeg] # M-JPEG camera demuxer

# float (Frames per Second)
#mjpeg-fps=0.000000

[aout_file] # File audio output

# string (Output format)
#audiofile-format=s16

# integer (Number of output channels)
#audiofile-channels=0

# string (Output file)
#audiofile-file=audiofile.wav

# boolean (Add WAVE header)
#audiofile-wav=1

[alsa] # ALSA audio output

# string (ALSA Device Name)
#alsadev=default

[jack] # JACK audio output

# boolean (Automatically connect to writable clients)
#jack-auto-connect=0

# string (Connect to clients matching)
#jack-connect-regex=

[visual] # Visualizer filter

# string (Effects list)
#effect-list=spectrum

# integer (Video width)
#effect-width=533

# integer (Video height)
#effect-height=400

# integer (Number of bands)
#visual-nbbands=80

# integer (Band separator)
#visual-separ=1

# integer (Amplification)
#visual-amp=3

# boolean (Enable peaks)
#visual-peaks=1

# boolean (Enable original graphic spectrum)
#spect-show-original=0

# boolean (Enable base)
#spect-show-base=1

# integer (Base pixel radius)
#spect-radius=42

# integer (Spectral sections)
#spect-sections=3

# integer (V-plane color)
#spect-color=80

# boolean (Enable bands)
#spect-show-bands=1

# integer (Number of bands)
#spect-nbbands=32

# integer (Band separator)
#spect-separ=1

# integer (Amplification)
#spect-amp=8

# boolean (Enable peaks)
#spect-show-peaks=1

# integer (Peak extra width)
#spect-peak-width=61

# integer (Peak height)
#spect-peak-height=1

[packetizer_mpegvideo] # MPEG-I/II video packetizer

# boolean (Sync on Intra Frame)
#packetizer-mpegvideo-sync-iframe=0

[screen] # Screen Input

# integer (Caching value in ms)
#screen-caching=300

# float (Frame rate)
#screen-fps=5.000000

[access_fake] # Fake input

# integer (Caching value in ms)
#fake-caching=300

# float (Framerate)
#fake-fps=25.000000

# integer (ID)
#fake-id=0

# integer (Duration in ms)
#fake-duration=0

[access_mms] # Microsoft Media Server (MMS) input

# integer (Caching value in ms)
#mms-caching=5700

# boolean (Force selection of all streams)
#mms-all=0

# integer (Maximum bitrate)
#mms-maxbitrate=0

# string (HTTP proxy)
#mmsh-proxy=

[access_udp] # UDP/RTP input

# integer (Caching value in ms)
#udp-caching=300

# integer (RTP reordering timeout in ms)
#rtp-late=100

[access_ftp] # FTP input

# integer (Caching value in ms)
#ftp-caching=600

# string (FTP user name)
#ftp-user=anonymous

# string (FTP password)
#ftp-pwd=anonymous@example.com

# string (FTP account)
#ftp-account=anonymous

[v4l2] # Video4Linux2 input

# string (Device name)
#v4l2-dev=/dev/video0

# integer (Standard)
#v4l2-standard=0

# string (Video input chroma format)
#v4l2-chroma=

# integer (Input)
#v4l2-input=0

# integer (Audio input)
#v4l2-audio-input=0

# integer (IO Method)
#v4l2-io=1

# integer (Width)
#v4l2-width=0

# integer (Height)
#v4l2-height=0

# float (Framerate)
#v4l2-fps=0.000000

# string (Audio device name)
#v4l2-adev=

# integer (Audio method)
#v4l2-audio-method=3

# boolean (Stereo)
#v4l2-stereo=1

# integer (Samplerate)
#v4l2-samplerate=48000

# integer (Caching value in ms)
#v4l2-caching=300

# integer (Tuner id)
#v4l2-tuner=0

# integer (Frequency)
#v4l2-tuner-frequency=-1

# integer (Audio mode)
#v4l2-tuner-audio-mode=-1

# boolean (Reset v4l2 controls)
#v4l2-controls-reset=0

# integer (Brightness)
#v4l2-brightness=-1

# integer (Contrast)
#v4l2-contrast=-1

# integer (Saturation)
#v4l2-saturation=-1

# integer (Hue)
#v4l2-hue=-1

# integer (Black level)
#v4l2-black-level=-1

# integer (Auto white balance)
#v4l2-auto-white-balance=-1

# integer (Do white balance)
#v4l2-do-white-balance=-1

# integer (Red balance)
#v4l2-red-balance=-1

# integer (Blue balance)
#v4l2-blue-balance=-1

# integer (Gamma)
#v4l2-gamma=-1

# integer (Exposure)
#v4l2-exposure=-1

# integer (Auto gain)
#v4l2-autogain=-1

# integer (Gain)
#v4l2-gain=-1

# integer (Horizontal flip)
#v4l2-hflip=-1

# integer (Vertical flip)
#v4l2-vflip=-1

# integer (Horizontal centering)
#v4l2-hcenter=-1

# integer (Vertical centering)
#v4l2-vcenter=-1

# integer (Volume)
#v4l2-audio-volume=-1

# integer (Balance)
#v4l2-audio-balance=-1

# boolean (Mute)
#v4l2-audio-mute=0

# integer (Bass)
#v4l2-audio-bass=-1

# integer (Treble)
#v4l2-audio-treble=-1

# integer (Loudness)
#v4l2-audio-loudness=-1

# string (v4l2 driver controls)
#v4l2-set-ctrls=

[access_jack] # JACK audio input

# integer (Caching value in ms)
#jack-input-caching=300

# boolean (Pace)
#jack-input-use-vlc-pace=0

# boolean (Pace)
#jack-input-auto-connect=0

[dvdnav] # DVDnav Input

# integer (DVD angle)
#dvdnav-angle=1

# integer (Caching value in ms)
#dvdnav-caching=300

# boolean (Start directly in menu)
#dvdnav-menu=1

[access_file] # File input

# integer (Caching value in ms)
#file-caching=300

[cdda] # Audio CD input

# integer (Caching value in ms)
#cdda-caching=300

# integer ((null))
#cdda-track=-1

# integer ((null))
#cdda-first-sector=-1

# integer ((null))
#cdda-last-sector=-1

# string (CDDB Server)
#cddb-server=freedb.freedb.org

# integer (CDDB port)
#cddb-port=8880

[v4l] # Video4Linux input

# integer (Caching value in ms)
#v4l-caching=300

# string (Video device name)
#v4l-vdev=/dev/video

# string (Audio device name)
#v4l-adev=/dev/dsp

# string (Video input chroma format)
#v4l-chroma=

# float (Framerate)
#v4l-fps=-1.000000

# integer (Samplerate)
#v4l-samplerate=44100

# integer (Channel)
#v4l-channel=0

# integer (Tuner)
#v4l-tuner=-1

# integer (Norm)
#v4l-norm=3

# integer (Frequency)
#v4l-frequency=-1

# integer (Audio Channel)
#v4l-audio=-1

# boolean (Stereo)
#v4l-stereo=1

# integer (Width)
#v4l-width=0

# integer (Height)
#v4l-height=0

# integer (Brightness)
#v4l-brightness=-1

# integer (Color)
#v4l-colour=-1

# integer (Hue)
#v4l-hue=-1

# integer (Contrast)
#v4l-contrast=-1

# boolean (MJPEG)
#v4l-mjpeg=0

# integer (Decimation)
#v4l-decimation=1

# integer (Quality)
#v4l-quality=100

[access_smb] # SMB input

# integer (Caching value in ms)
#smb-caching=600

# string (SMB user name)
#smb-user=

# string (SMB password)
#smb-pwd=

# string (SMB domain)
#smb-domain=

[access_tcp] # TCP input

# integer (Caching value in ms)
#tcp-caching=300

[access_http] # HTTP input

# string (HTTP proxy)
#http-proxy=

# integer (Caching value in ms)
#http-caching=1200

# string (HTTP user agent)
#http-user-agent=VLC media player - version 0.9.0-svn Grishenko - (c) 1996-2008 the VideoLAN team

# boolean (Auto re-connect)
#http-reconnect=0

# boolean (Continuous stream)
#http-continuous=0

[vcd] # VCD input

# integer (Caching value in ms)
#vcd-caching=300

[dvdread] # DVDRead Input (DVD without menu support)

# integer (DVD angle)
#dvdread-angle=1

# integer (Caching value in ms)
#dvdread-caching=300

# string (Method used by libdvdcss for decryption)
#dvdread-css-method=

[access_directory] # Standard filesystem directory input

# string (Subdirectory behavior)
#recursive=expand

# string (Ignored extensions)
#ignore-filetypes=m3u,db,nfo,jpg,gif,sfv,txt,sub,idx,srt,cue

[dvb] # DVB input with v4l2 support

# integer (Caching value in ms)
#dvb-caching=300

# integer (Adapter card to tune)
#dvb-adapter=0

# integer (Device number to use on adapter)
#dvb-device=0

# integer (Transponder/multiplex frequency)
#dvb-frequency=11954000

# integer (Inversion mode)
#dvb-inversion=2

# boolean (Probe DVB card for capabilities)
#dvb-probe=1

# boolean (Budget mode)
#dvb-budget-mode=0

# integer (Satellite number in the Diseqc system)
#dvb-satno=0

# integer (LNB voltage)
#dvb-voltage=13

# boolean (High LNB voltage)
#dvb-high-voltage=0

# integer (22 kHz tone)
#dvb-tone=-1

# integer (Transponder FEC)
#dvb-fec=9

# integer (Transponder symbol rate in kHz)
#dvb-srate=27500000

# integer (Antenna lnb_lof1 (kHz))
#dvb-lnb-lof1=0

# integer (Antenna lnb_lof2 (kHz))
#dvb-lnb-lof2=0

# integer (Antenna lnb_slof (kHz))
#dvb-lnb-slof=0

# integer (Modulation type)
#dvb-modulation=0

# integer (Terrestrial high priority stream code rate (FEC))
#dvb-code-rate-hp=9

# integer (Terrestrial low priority stream code rate (FEC))
#dvb-code-rate-lp=9

# integer (Terrestrial bandwidth)
#dvb-bandwidth=0

# integer (Terrestrial guard interval)
#dvb-guard=0

# integer (Terrestrial transmission mode)
#dvb-transmission=0

# integer (Terrestrial hierarchy mode)
#dvb-hierarchy=0

[ffmpeg] # FFmpeg audio/video decoders/encoders

# boolean (Direct rendering)
#ffmpeg-dr=1

# integer (Error resilience)
#ffmpeg-error-resilience=1

# integer (Workaround bugs)
#ffmpeg-workaround-bugs=1

# boolean (Hurry up)
#ffmpeg-hurry-up=1

# integer (Skip frame (default=0))
#ffmpeg-skip-frame=0

# integer (Skip idct (default=0))
#ffmpeg-skip-idct=0

# integer (Visualize motion vectors)
#ffmpeg-vismv=0

# integer (Low resolution decoding)
#ffmpeg-lowres=0

# integer (Skip the loop filter for H.264 decoding)
#ffmpeg-skiploopfilter=0

# integer (Post processing quality)
#ffmpeg-pp-q=0

# string (FFmpeg post processing filter chains)
#ffmpeg-pp-name=default

# integer (Debug mask)
#ffmpeg-debug=0

# string (Quality level)
#sout-ffmpeg-hq=simple

# integer (Ratio of key frames)
#sout-ffmpeg-keyint=0

# integer (Ratio of B frames)
#sout-ffmpeg-bframes=0

# boolean (Hurry up)
#sout-ffmpeg-hurry-up=0

# boolean (Interlaced encoding)
#sout-ffmpeg-interlace=0

# boolean (Interlaced motion estimation)
#sout-ffmpeg-interlace-me=1

# integer (Video bitrate tolerance)
#sout-ffmpeg-vt=0

# boolean (Pre-motion estimation)
#sout-ffmpeg-pre-me=0

# boolean (Strict rate control)
#sout-ffmpeg-strict-rc=0

# integer (Rate control buffer size)
#sout-ffmpeg-rc-buffer-size=1835008

# float (Rate control buffer aggressiveness)
#sout-ffmpeg-rc-buffer-aggressivity=1.000000

# float (I quantization factor)
#sout-ffmpeg-i-quant-factor=0.000000

# integer (Noise reduction)
#sout-ffmpeg-noise-reduction=0

# boolean (MPEG4 quantization matrix)
#sout-ffmpeg-mpeg4-matrix=0

# integer (Minimum video quantizer scale)
#sout-ffmpeg-qmin=0

# integer (Maximum video quantizer scale)
#sout-ffmpeg-qmax=0

# boolean (Trellis quantization)
#sout-ffmpeg-trellis=0

# float (Fixed quantizer scale)
#sout-ffmpeg-qscale=0.000000

# integer (Strict standard compliance)
#sout-ffmpeg-strict=0

# float (Luminance masking)
#sout-ffmpeg-lumi-masking=0.000000

# float (Darkness masking)
#sout-ffmpeg-dark-masking=0.000000

# float (Motion masking)
#sout-ffmpeg-p-masking=0.000000

# float (Border masking)
#sout-ffmpeg-border-masking=0.000000

# integer (Luminance elimination)
#sout-ffmpeg-luma-elim-threshold=0

# integer (Chrominance elimination)
#sout-ffmpeg-chroma-elim-threshold=0

# string (Ffmpeg mux)
#ffmpeg-mux=

# integer (Scaling mode)
#swscale-mode=0

[dvbsub] # DVB subtitles decoder

# integer (Subpicture position)
#dvbsub-position=8

# integer (Decoding X coordinate)
#dvbsub-x=-1

# integer (Decoding Y coordinate)
#dvbsub-y=-1

# integer (Encoding X coordinate)
#sout-dvbsub-x=-1

# integer (Encoding Y coordinate)
#sout-dvbsub-y=-1

[svcdsub] # Philips OGT (SVCD subtitle) decoder

# integer (Enable debug)
#svcdsub-debug=0

[vorbis] # Vorbis audio decoder

# integer (Encoding quality)
#sout-vorbis-quality=0

# integer (Maximum encoding bitrate)
#sout-vorbis-max-bitrate=0

# integer (Minimum encoding bitrate)
#sout-vorbis-min-bitrate=0

# boolean (CBR encoding)
#sout-vorbis-cbr=0

[subsdec] # Text subtitles decoder

# integer (Subtitles justification)
#subsdec-align=0

# string (Subtitles text encoding)
#subsdec-encoding=Default

# boolean (UTF-8 subtitles autodetection)
#subsdec-autodetect-utf8=1

# boolean (Formatted Subtitles)
#subsdec-formatted=1

[x264] # H.264/MPEG4 AVC encoder (using x264 library)

# integer (Maximum GOP size)
#sout-x264-keyint=250

# integer (Minimum GOP size)
#sout-x264-min-keyint=25

# integer (Extra I-frames aggressivity)
#sout-x264-scenecut=40

# boolean (Faster, less precise scenecut detection)
#sout-x264-pre-scenecut=0

# integer (B-frames between I and P)
#sout-x264-bframes=0

# boolean (Adaptive B-frame decision)
#sout-x264-b-adapt=1

# integer (Influence (bias) B-frames usage)
#sout-x264-b-bias=0

# boolean (Keep some B-frames as references)
#sout-x264-bpyramid=0

# boolean (CABAC)
#sout-x264-cabac=1

# integer (Number of reference frames)
#sout-x264-ref=1

# boolean (Skip loop filter)
#sout-x264-nf=0

# string (Loop filter AlphaC0 and Beta parameters alpha:beta)
#sout-x264-deblock=0:0

# string (H.264 level)
#sout-x264-level=5.1

# boolean (Interlaced mode)
#sout-x264-interlaced=0

# integer (Set QP)
#sout-x264-qp=26

# integer (Quality-based VBR)
#sout-x264-crf=0

# integer (Min QP)
#sout-x264-qpmin=10

# integer (Max QP)
#sout-x264-qpmax=51

# integer (Max QP step)
#sout-x264-qpstep=4

# float (Average bitrate tolerance)
#sout-x264-ratetol=1.000000

# integer (Max local bitrate)
#sout-x264-vbv-maxrate=0

# integer (VBV buffer)
#sout-x264-vbv-bufsize=0

# float (Initial VBV buffer occupancy)
#sout-x264-vbv-init=0.900000

# float (QP factor between I and P)
#sout-x264-ipratio=1.400000

# float (QP factor between P and B)
#sout-x264-pbratio=1.300000

# integer (QP difference between chroma and luma)
#sout-x264-chroma-qp-offset=0

# integer (Multipass ratecontrol)
#sout-x264-pass=0

# float (QP curve compression)
#sout-x264-qcomp=0.600000

# float (Reduce fluctuations in QP)
#sout-x264-cplxblur=20.000000

# float (Reduce fluctuations in QP)
#sout-x264-qblur=0.500000

# string (Partitions to consider)
#sout-x264-partitions=normal

# string (Direct MV prediction mode)
#sout-x264-direct=spatial

# integer (Direct prediction size)
#sout-x264-direct-8x8=0

# boolean (Weighted prediction for B-frames)
#sout-x264-weightb=0

# string (Integer pixel motion estimation method)
#sout-x264-me=hex

# integer (Maximum motion vector search range)
#sout-x264-merange=16

# integer (Maximum motion vector length)
#sout-x264-mvrange=-1

# integer (Minimum buffer space between threads)
#sout-x264-mvrange-thread=-1

# integer (Subpixel motion estimation and partition decision quality)
#sout-x264-subme=5

# boolean (RD based mode decision for B-frames)
#sout-x264-b-rdo=0

# boolean (Decide references on a per partition basis)
#sout-x264-mixed-refs=0

# boolean (Chroma in motion estimation)
#sout-x264-chroma-me=1

# boolean (Jointly optimize both MVs in B-frames)
#sout-x264-bime=0

# boolean (Adaptive spatial transform size)
#sout-x264-8x8dct=0

# integer (Trellis RD quantization)
#sout-x264-trellis=0

# boolean (Early SKIP detection on P-frames)
#sout-x264-fast-pskip=1

# boolean (Coefficient thresholding on P-frames)
#sout-x264-dct-decimate=1

# integer (Noise reduction)
#sout-x264-nr=0

# integer (Inter luma quantization deadzone)
#sout-x264-deadzone-inter=21

# integer (Intra luma quantization deadzone)
#sout-x264-deadzone-intra=11

# boolean (Non-deterministic optimizations when threaded)
#sout-x264-non-deterministic=0

# boolean (CPU optimizations)
#sout-x264-asm=1

# boolean (PSNR computation)
#sout-x264-psnr=0

# boolean (SSIM computation)
#sout-x264-ssim=0

# boolean (Quiet mode)
#sout-x264-quiet=0

# integer (SPS and PPS id numbers)
#sout-x264-sps-id=0

# boolean (Access unit delimiters)
#sout-x264-aud=0

# boolean (Statistics)
#sout-x264-verbose=0

# string (Filename for 2 pass stats file)
#sout-x264-stats=x264_2pass.log

[theora] # Theora video decoder

# integer (Encoding quality)
#sout-theora-quality=2

[fake] # Fake video decoder

# string (Image file)
#fake-file=

# integer (Reload image file)
#fake-file-reload=0

# integer (Video width)
#fake-width=0

# integer (Video height)
#fake-height=0

# boolean (Keep aspect ratio)
#fake-keep-ar=0

# string (Background aspect ratio)
#fake-aspect-ratio=

# boolean (Deinterlace video)
#fake-deinterlace=0

# string (Deinterlace module)
#fake-deinterlace-module=deinterlace

# string (Chroma used.)
#fake-chroma=I420

[mux_mpjpeg] # Multipart JPEG muxer

[mux_ps] # PS muxer

# integer (DTS delay (ms))
#sout-ps-dts-delay=200

# integer (PES maximum size)
#sout-ps-pes-max-size=65500

[mux_asf] # ASF muxer

# string (Title)
#sout-asf-title=

# string (Author)
#sout-asf-author=

# string (Copyright)
#sout-asf-copyright=

# string (Comment)
#sout-asf-comment=

# string (Rating)
#sout-asf-rating=

# integer (Packet Size)
#sout-asf-packet-size=4096

[mux_ts] # TS muxer (libdvbpsi)

# integer (Video PID)
#sout-ts-pid-video=0

# integer (Audio PID)
#sout-ts-pid-audio=0

# integer (SPU PID)
#sout-ts-pid-spu=0

# integer (PMT PID)
#sout-ts-pid-pmt=0

# integer (TS ID)
#sout-ts-tsid=0

# integer (NET ID)
#sout-ts-netid=0

# string (PMT Program numbers)
#sout-ts-program-pmt=

# boolean (Set PID to ID of ES)
#sout-ts-es-id-pid=0

# string (Mux PMT (requires --sout-ts-es-id-pid))
#sout-ts-muxpmt=

# string (SDT Descriptors (requires --sout-ts-es-id-pid))
#sout-ts-sdtdesc=

# boolean (Data alignment)
#sout-ts-alignment=1

# integer (Shaping delay (ms))
#sout-ts-shaping=200

# boolean (Use keyframes)
#sout-ts-use-key-frames=0

# integer (PCR delay (ms))
#sout-ts-pcr=70

# integer (Minimum B (deprecated))
#sout-ts-bmin=0

# integer (Maximum B (deprecated))
#sout-ts-bmax=0

# integer (DTS delay (ms))
#sout-ts-dts-delay=400

# boolean (Crypt audio)
#sout-ts-crypt-audio=1

# boolean (Crypt video)
#sout-ts-crypt-video=1

# string (CSA Key)
#sout-ts-csa-ck=

# integer (Packet size in bytes to encrypt)
#sout-ts-csa-pkt=188

[mux_mp4] # MP4/MOV muxer

# boolean (Create "Fast Start" files)
#sout-mp4-faststart=1

[ncurses] # Ncurses interface

# string (Filebrowser starting point)
#browse-dir=

[skins2] # Skinnable Interface

# string (Skin to use)
#skins2-last=

# string (Config of last used skin)
#skins2-config=

# boolean (Use a skinned playlist)
#skinned-playlist=1

[wxwidgets] # wxWidgets interface module

# boolean (Embed video in interface)
#wx-embed=1

# boolean (Bookmarks dialog)
#wx-bookmarks=0

# boolean (Taskbar)
#wx-taskbar=1

# boolean (Extended GUI)
#wx-extended=0

# boolean (Minimal interface)
#wx-minimal=0

# boolean (Size to video)
#wx-autosize=1

# integer (Playlist view)
#wx-playlist-view=0

# boolean (Systray icon)
#wx-systray=0

# boolean (Show labels in toolbar)
#wx-labels=0

# string (last config)
#wx-config-last=

[qt4] # Qt interface

# boolean (Show notification popup on track change)
#qt-notification=1

# float (Windows opacity between 0.1 and 1.)
#qt-opacity=1.000000

# boolean (Always show video area)
#qt-always-video=0

# boolean (Systray icon)
#qt-system-tray=1

# boolean (Start VLC with only a systray icon)
#qt-start-minimized=0

# boolean (Start in minimal view (menus hidden).)
#qt-minimal-view=0

# boolean (Show playing item name in window title)
#qt-name-in-title=1

# boolean (Use non native buttons and volume slider)
#qt-blingbling=1

# boolean (Allow the volume to be set to 400%)
#qt-volume-complete=0

# string (Path to use in openfile dialog)
#qt-filedialog-path=

# boolean (Advanced options)
#qt-adv-options=0

# boolean (Show advanced prefs over simple ones)
#qt-advanced-pref=0

# boolean (Show unimportant error and warnings dialogs)
#qt-error-dialogs=1

# boolean (Activate the new updates notification)
#qt-updates-notif=1

# integer (Define what columns to show in playlist window)
#qt-pl-showflags=39

# boolean (Ask for network policy at start)
privacy-ask=0

[rc] # Remote control interface

# boolean (Show stream position)
#rc-show-pos=0

# boolean (Fake TTY)
#rc-fake-tty=0

# string (UNIX socket command input)
#rc-unix=

# string (TCP command input)
#rc-host=

[showintf] # Show interface with mouse

# integer (Threshold)
#showintf-threshold=10

[motion] # motion control interface

# boolean (Use the rotate video filter instead of transform)
#motion-use-rotate=0

[gestures] # Mouse gestures control interface

# integer (Motion threshold (10-100))
#gestures-threshold=30

# string (Trigger button)
#gestures-button=right

[stream_out_transcode] # Transcode stream output

# string (Video encoder)
#sout-transcode-venc=

# string (Destination video codec)
#sout-transcode-vcodec=

# integer (Video bitrate)
#sout-transcode-vb=800000

# float (Video scaling)
#sout-transcode-scale=1.000000

# float (Video frame-rate)
#sout-transcode-fps=0.000000

# boolean (Hurry up)
#sout-transcode-hurry-up=1

# boolean (Deinterlace video)
#sout-transcode-deinterlace=0

# string (Deinterlace module)
#sout-transcode-deinterlace-module=deinterlace

# integer (Video width)
#sout-transcode-width=0

# integer (Video height)
#sout-transcode-height=0

# integer (Maximum video width)
#sout-transcode-maxwidth=0

# integer (Maximum video height)
#sout-transcode-maxheight=0

# string (Video filter)
#sout-transcode-vfilter=

# integer (Video crop (top))
#sout-transcode-croptop=0

# integer (Video crop (left))
#sout-transcode-cropleft=0

# integer (Video crop (bottom))
#sout-transcode-cropbottom=0

# integer (Video crop (right))
#sout-transcode-cropright=0

# integer (Video padding (top))
#sout-transcode-paddtop=0

# integer (Video padding (left))
#sout-transcode-paddleft=0

# integer (Video padding (bottom))
#sout-transcode-paddbottom=0

# integer (Video padding (right))
#sout-transcode-paddright=0

# integer (Video canvas width)
#sout-transcode-canvas-width=0

# integer (Video canvas height)
#sout-transcode-canvas-height=0

# string (Video canvas aspect ratio)
#sout-transcode-canvas-aspect=

# string (Audio encoder)
#sout-transcode-aenc=

# string (Destination audio codec)
#sout-transcode-acodec=

# integer (Audio bitrate)
#sout-transcode-ab=0

# integer (Audio channels)
#sout-transcode-channels=0

# integer (Audio sample rate)
#sout-transcode-samplerate=0

# boolean (Synchronise on audio track)
#sout-transcode-audio-sync=0

# string (Audio filter)
#sout-transcode-afilter=

# string (Subtitles encoder)
#sout-transcode-senc=

# string (Destination subtitles codec)
#sout-transcode-scodec=

# boolean (Destination subtitles codec)
#sout-transcode-soverlay=0

# string (Overlays)
#sout-transcode-sfilter=

# boolean (OSD menu)
#sout-transcode-osd=0

# integer (Number of threads)
#sout-transcode-threads=0

# boolean (High priority)
#sout-transcode-high-priority=0

[stream_out_bridge] # Bridge stream output

# integer (ID)
#sout-bridge-out-id=0

# integer (Delay)
#sout-bridge-in-delay=0

# integer (ID Offset)
#sout-bridge-in-id-offset=8192

[stream_out_mosaic_bridge] # Mosaic bridge stream output

# string (ID)
#sout-mosaic-bridge-id=Id

# integer (Video width)
#sout-mosaic-bridge-width=0

# integer (Video height)
#sout-mosaic-bridge-height=0

# string (Sample aspect ratio)
#sout-mosaic-bridge-sar=1:1

# string (Image chroma)
#sout-mosaic-bridge-chroma=

# string (Video filter)
#sout-mosaic-bridge-vfilter=

[stream_out_standard] # Standard stream output

# string (Output access method)
#sout-standard-access=

# string (Output muxer)
#sout-standard-mux=

# string (Output destination)
#sout-standard-dst=

# boolean (SAP announcing)
#sout-standard-sap=0

# string (Session name)
#sout-standard-name=

# string (Session groupname)
#sout-standard-group=

# string (Session description)
#sout-standard-description=

# string (Session URL)
#sout-standard-url=

# string (Session email)
#sout-standard-email=

# string (Session phone number)
#sout-standard-phone=

[stream_out_display] # Display stream output

# boolean (Enable audio)
#sout-display-audio=1

# boolean (Enable video)
#sout-display-video=1

# integer (Delay)
#sout-display-delay=100

[stream_out_es] # Elementary stream output

# string (Output access method)
#sout-es-access=

# string (Audio output access method)
#sout-es-access-audio=

# string (Video output access method)
#sout-es-access-video=

# string (Output muxer)
#sout-es-mux=

# string (Audio output muxer)
#sout-es-mux-audio=

# string (Video output muxer)
#sout-es-mux-video=

# string (Output URL)
#sout-es-dst=

# string (Audio output URL)
#sout-es-dst-audio=

# string (Video output URL)
#sout-es-dst-video=

[access_filter_bandwidth] # Bandwidth limiter

# integer (Bandwidth limit (bytes/s))
#access-bandwidth=65536

[access_filter_record] # Record

# string (Record directory)
#record-path=

[access_filter_dump] # Dump

# boolean (Force use of dump module)
#dump-force=0

# integer (Maximum size of temporary file (Mb))
#dump-margin=32

[access_filter_timeshift] # Timeshift

# integer (Timeshift granularity)
#timeshift-granularity=50

# string (Timeshift directory)
#timeshift-dir=

# boolean (Force use of the timeshift module)
#timeshift-force=0

[normvol] # Volume normalizer

# integer (Number of audio buffers)
#norm-buff-size=20

# float (Max level)
#norm-max-level=2.000000

[a52tofloat32] # ATSC A/52 (AC-3) audio decoder

# boolean (A/52 dynamic range compression)
#a52-dynrng=1

# boolean (Enable internal upmixing)
#a52-upmix=0

[param_eq] # Parametric Equalizer

# float (Low freq (Hz))
#param-eq-lowf=100.000000

# float (Low freq gain (dB))
#param-eq-lowgain=0.000000

# float (High freq (Hz))
#param-eq-highf=10000.000000

# float (High freq gain (dB))
#param-eq-highgain=0.000000

# float (Freq 1 (Hz))
#param-eq-f1=300.000000

# float (Freq 1 gain (dB))
#param-eq-gain1=0.000000

# float (Freq 1 Q)
#param-eq-q1=3.000000

# float (Freq 2 (Hz))
#param-eq-f2=1000.000000

# float (Freq 2 gain (dB))
#param-eq-gain2=0.000000

# float (Freq 2 Q)
#param-eq-q2=3.000000

# float (Freq 3 (Hz))
#param-eq-f3=3000.000000

# float (Freq 3 gain (dB))
#param-eq-gain3=0.000000

# float (Freq 3 Q)
#param-eq-q3=3.000000

[spatializer] # spatializer

# float ((null))
#Roomsize=1.050000

# float ((null))
#Width=10.000000

# float ((null))
#Wet=3.000000

# float ((null))
#Dry=2.000000

# float ((null))
#Damp=1.000000

[equalizer] # Equalizer with 10 bands

# string (Equalizer preset)
#equalizer-preset=flat

# string (Bands gain)
#equalizer-bands=

# boolean (Two pass)
#equalizer-2pass=0

# float (Global gain)
#equalizer-preamp=12.000000

[mono] # Audio filter for stereo to mono conversion

# boolean (Use downmix algorithm)
#sout-mono-downmix=0

# integer (Select channel to keep)
#sout-mono-channel=-1

[headphone_channel_mixer] # Headphone virtual spatialization effect

# integer (Characteristic dimension)
#headphone-dim=10

# boolean (Compensate delay)
#headphone-compensate=0

# boolean (No decoding of Dolby Surround)
#headphone-dolby=0

[dtstofloat32] # DTS Coherent Acoustics audio decoder

# boolean (DTS dynamic range compression)
#dts-dynrng=1

[telepathy] # Telepathy "Now Playing" using MissionControl

# string (Title format string)
#telepathy-format=$a - $t

[gnutls] # GnuTLS transport layer security

# integer (Expiration time for resumed TLS sessions)
#gnutls-cache-timeout=3600

# integer (Number of resumed TLS sessions)
#gnutls-cache-size=64

[notify] # LibNotify Notification Plugin

# integer (Timeout (ms))
#notify-timeout=4000

[logger] # File logging

# string (Log filename)
#logfile=

# string (Log format)
#logmode=text

# string (RRD output file)
#rrd-file=

[dummy] # Dummy interface function

# boolean (Save raw codec data)
#dummy-save-es=0

# string (Dummy image chroma format)
#dummy-chroma=

[xosd] # XOSD interface

# boolean (Flip vertical position)
#xosd-position=1

# integer (Vertical offset)
#xosd-text-offset=30

# integer (Shadow offset)
#xosd-shadow-offset=2

# string (Font)
#xosd-font=-adobe-helvetica-bold-r-normal-*-*-160-*-*-p-*-iso8859-1

# string (Color)
#xosd-colour=LawnGreen

[svg] # svg

# string (SVG template file)
#svg-template-file=

[audioscrobbler] # Submission of played songs to last.fm

# string (Username)
#lastfm-username=

# string (Password)
#lastfm-password=

[freetype] # Freetype2 font renderer

# string (Font)
#freetype-font=/usr/share/fonts/ttf-bitstream-vera/Vera.ttf

# integer (Font size in pixels)
#freetype-fontsize=0

# integer (Opacity)
#freetype-opacity=255

# integer (Text default color)
#freetype-color=16777215

# integer (Relative font size)
#freetype-rel-fontsize=16

# integer (Font Effect)
#freetype-effect=2

# boolean (Use YUVP renderer)
#freetype-yuvp=0

[vout_sdl] # Simple DirectMedia Layer video output

# string (SDL chroma format)
#sdl-chroma=

[glx] # OpenGL(GLX) provider

# string (X11 display)
#glx-display=

# integer (XVideo adaptor number)
#glx-adaptor=-1

# boolean (Alternate fullscreen method)
#glx-altfullscreen=0

# integer (Screen for fullscreen mode.)
#glx-xineramascreen=0

[xvideo] # XVideo extension video output

# string (X11 display)
#xvideo-display=

# integer (XVideo adaptor number)
#xvideo-adaptor=-1

# boolean (Alternate fullscreen method)
#xvideo-altfullscreen=0

# string (XVimage chroma format)
#xvideo-chroma=

# boolean (Use shared memory)
#xvideo-shm=1

# integer (Screen for fullscreen mode.)
#xvideo-xineramascreen=0

[image] # Image video output

# string (Image format)
#image-out-format=png

# integer (Image width)
#image-out-width=0

# integer (Image height)
#image-out-height=0

# integer (Recording ratio)
#image-out-ratio=3

# string (Filename prefix)
#image-out-prefix=img

# boolean (Always write to the same file)
#image-out-replace=0

[opengl] # OpenGL video output

# float (OpenGL cube rotation speed)
#opengl-cube-speed=2.000000

# integer (OpenGL sampling accuracy )
#opengl-accuracy=4

# float (Point of view x-coordinate)
#opengl-pov-x=0.000000

# float (Point of view y-coordinate)
#opengl-pov-y=0.000000

# float (Point of view z-coordinate)
#opengl-pov-z=-1.000000

# float (OpenGL Cylinder radius)
#opengl-cylinder-radius=-100.000000

# string (OpenGL Provider)
#opengl-provider=default

# string (Effect)
#opengl-effect=none

[x11] # X11 video output

# string (X11 display)
#x11-display=

# boolean (Alternate fullscreen method)
#x11-altfullscreen=0

# boolean (Use shared memory)
#x11-shm=1

# integer (Screen for fullscreen mode.)
#x11-xineramascreen=0

[podcast] # Podcasts

# string (Podcast URLs list)
#podcast-urls=

[sap] # SAP Announcements

# string (SAP multicast address)
#sap-addr=

# boolean (IPv4 SAP)
#sap-ipv4=1

# boolean (IPv6 SAP)
#sap-ipv6=1

# integer (SAP timeout (seconds))
#sap-timeout=1800

# boolean (Try to parse the announce)
#sap-parse=1

# boolean (SAP Strict mode)
#sap-strict=0

# boolean (Allow timeshifting)
#sap-timeshift=0

[shout] # Shoutcast radio listings