-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvlcrc
4726 lines (3088 loc) · 84 KB
/
vlcrc
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
###
### vlc 3.0.16
###
###
### lines beginning with a '#' character are comments
###
[speex_resampler] # Speex resampler
# Resampling quality (integer)
#speex-resampler-quality=4
[smem] # Stream output to memory buffer
# Time Synchronized output (boolean)
#sout-smem-time-sync=1
[amem] # Audio memory output
# Sample format (string)
#amem-format=S16N
# Sample rate (integer)
#amem-rate=44100
# Channels count (integer)
#amem-channels=2
[swscale] # Video scaling filter
# Scaling mode (integer)
#swscale-mode=2
[subsdelay] # Subtitle delay
# Delay calculation mode (integer)
#subsdelay-mode=1
# Calculation factor (float)
#subsdelay-factor=2.000000
# Maximum overlapping subtitles (integer)
#subsdelay-overlap=3
# Minimum alpha value (integer)
#subsdelay-min-alpha=70
# Interval between two disappearances (integer)
#subsdelay-min-stops=1000
# Interval between appearance and disappearance (integer)
#subsdelay-min-start-stop=1000
# Interval between disappearance and appearance (integer)
#subsdelay-min-stop-start=1000
[syslog] # System logger (syslog)
# System log (syslog) (boolean)
#syslog=0
# Debug messages (boolean)
#syslog-debug=0
# Identity (string)
#syslog-ident=vlc
# Facility (string)
#syslog-facility=user
[scaletempo] # Audio tempo scaler synched with rate
# Stride Length (integer)
#scaletempo-stride=30
# Overlap Length (float)
#scaletempo-overlap=0.200000
# Search Length (integer)
#scaletempo-search=14
[mod] # MOD demuxer (libmodplug)
# Noise reduction (boolean)
#mod-noisereduction=1
# Reverb (boolean)
#mod-reverb=0
# Reverberation level (integer)
#mod-reverb-level=0
# Reverberation delay (integer)
#mod-reverb-delay=40
# Mega bass (boolean)
#mod-megabass=0
# Mega bass level (integer)
#mod-megabass-level=0
# Mega bass cutoff (integer)
#mod-megabass-range=10
# Surround (boolean)
#mod-surround=0
# Surround level (integer)
#mod-surround-level=0
# Surround delay (ms) (integer)
#mod-surround-delay=5
[access_mms] # Microsoft Media Server (MMS) input
# TCP/UDP timeout (ms) (integer)
#mms-timeout=5000
# Force selection of all streams (boolean)
#mms-all=0
# Maximum bitrate (integer)
#mms-maxbitrate=0
[stream_out_chromecast] # Chromecast stream output
# ? (string)
#sout-chromecast-ip=
# ? (integer)
#sout-chromecast-port=8009
# ? (boolean)
#sout-chromecast-video=1
# HTTP port (integer)
#sout-chromecast-http-port=8010
# Performance warning (integer)
#sout-chromecast-show-perf-warning=1
# Enable Audio passthrough (boolean)
#sout-chromecast-audio-passthrough=0
# Conversion quality (integer)
#sout-chromecast-conversion-quality=1
[shm] # Shared memory framebuffer
# Frame rate (float)
#shm-fps=10.000000
# Frame buffer depth (integer)
#shm-depth=0
# Frame buffer width (integer)
#shm-width=800
# Frame buffer height (integer)
#shm-height=480
[macosx] # Mac OS X interface
# Run VLC with dark interface style (boolean)
macosx-interfacestyle=1
# Use the native fullscreen mode (boolean)
#macosx-nativefullscreenmode=0
# Display VLC status menu icon (boolean)
#macosx-statusicon=1
# Allow automatic icon changes (boolean)
#macosx-icon-change=1
# Show Previous & Next Buttons (boolean)
macosx-show-playback-buttons=1
# Show Shuffle & Repeat Buttons (boolean)
#macosx-show-playmode-buttons=0
# Show Audio Effects Button (boolean)
#macosx-show-effects-button=0
# Maximum Volume displayed (integer)
#macosx-max-volume=125
# Use large text for list views (boolean)
#macosx-large-text=0
# Auto-playback of new items (boolean)
#macosx-autoplay=1
# Keep Recent Items (boolean)
#macosx-recentitems=1
# Show Fullscreen controller (boolean)
#macosx-fspanel=1
# Resize interface to the native video size (boolean)
#macosx-video-autoresize=1
# Pause the video playback when minimized (boolean)
#macosx-pause-minimized=0
# Lock Aspect Ratio (boolean)
#macosx-lock-aspect-ratio=1
# Dim keyboard backlight during fullscreen playback (boolean)
#macosx-dim-keyboard=0
# Control external music players (integer)
#macosx-control-itunes=1
# Continue playback where you left off (integer)
#macosx-continue-playback=0
# Control playback with the Apple Remote (boolean)
#macosx-appleremote=1
# Control system volume with the Apple Remote (boolean)
#macosx-appleremote-sysvol=0
# Control playlist items with the Apple Remote (boolean)
#macosx-appleremote-prevnext=0
# Control playback with media keys (boolean)
#macosx-mediakeys=1
# Video device (integer)
#macosx-vdev=0
# Opaqueness (float)
#macosx-opaqueness=1.000000
# Black screens in fullscreen (boolean)
#macosx-black=0
[dynamicoverlay] # Dynamic video overlay
# Input FIFO (string)
#overlay-input=
# Output FIFO (string)
#overlay-output=
[ncurses] # Ncurses interface
# Filebrowser starting point (string)
#browse-dir=
[mp4] # MP4 stream demuxer
# M4A audio only (boolean)
#mp4-m4a-audioonly=0
[mosaic_bridge] # Mosaic bridge stream output
# ID (string)
#sout-mosaic-bridge-id=Id
# Video width (integer)
#sout-mosaic-bridge-width=0
# Video height (integer)
#sout-mosaic-bridge-height=0
# Sample aspect ratio (string)
#sout-mosaic-bridge-sar=1:1
# Image chroma (string)
#sout-mosaic-bridge-chroma=
# Video filter (string)
#sout-mosaic-bridge-vfilter=
# Transparency (integer)
#sout-mosaic-bridge-alpha=255
# X offset (integer)
#sout-mosaic-bridge-x=-1
# Y offset (integer)
#sout-mosaic-bridge-y=-1
[afile] # File audio output
# Output file (string)
#audiofile-file=audiofile.wav
# Output format (string)
#audiofile-format=s16
# Number of output channels (integer)
#audiofile-channels=0
# Add WAVE header (boolean)
#audiofile-wav=1
[yuv] # YUV video output
# device, fifo or filename (string)
#yuv-file=stream.yuv
# Chroma used (string)
#yuv-chroma=
# Add a YUV4MPEG2 header (boolean)
#yuv-yuv4mpeg2=0
[vdummy] # Dummy video output
# Dummy image chroma format (string)
#dummy-chroma=
[ttml] # TTML subtitles decoder
# Subtitle justification (integer)
#ttml-align=0
[live555] # RTP/RTSP/SDP demuxer (using Live555)
# Use RTP over RTSP (TCP) (boolean)
#rtsp-tcp=0
# Client port (integer)
#rtp-client-port=-1
# Force multicast RTP via RTSP (boolean)
#rtsp-mcast=0
# Tunnel RTSP and RTP over HTTP (boolean)
#rtsp-http=0
# HTTP tunnel port (integer)
#rtsp-http-port=80
# Kasenna RTSP dialect (boolean)
#rtsp-kasenna=0
# WMServer RTSP dialect (boolean)
#rtsp-wmserver=0
# Username (string)
#rtsp-user=
# Password (string)
#rtsp-pwd=
# RTSP frame buffer size (integer)
#rtsp-frame-buffer-size=250000
[h26x] # H264 video demuxer
# Frames per Second (float)
#h264-fps=0.000000
# Frames per Second (float)
#hevc-fps=0.000000
[spatialaudio] # Ambisonics renderer and binauralizer
# Headphones mode (binaural) (boolean)
#spatialaudio-headphones=0
# HRTF file for the binauralization (string)
#hrtf-file=
[file] # File logger
# Log to file (boolean)
#file-logging=0
# Log filename (string)
#logfile=
# Log format (string)
#logmode=text
# Verbosity (integer)
#log-verbose=-1
[rist] # RIST input
# RIST maximum packet size (bytes) (integer)
#packet-size=1472
# RIST demux/decode maximum jitter (default is 5ms) (integer)
#maximum-jitter=5
# RIST latency (ms) (integer)
#latency=1000
# RIST nack retry interval (ms) (integer)
#retry-interval=132
# RIST reorder buffer (ms) (integer)
#reorder-buffer=70
# RIST maximum retry count (integer)
#max-retries=10
# RIST nack type, 0 = range, 1 = bitmask. Default is range (integer)
#nack-type=0
# Disable NACK output packets (boolean)
#disable-nacks=0
# Do not check for a valid rtcp message from the encoder (boolean)
#mcast-blind-nacks=0
[audiobargraph_v] # Audio Bar Graph Video sub source
# X coordinate (integer)
#audiobargraph_v-x=0
# Y coordinate (integer)
#audiobargraph_v-y=0
# Transparency of the bargraph (integer)
#audiobargraph_v-transparency=255
# Bargraph position (integer)
#audiobargraph_v-position=-1
# Bar width in pixel (integer)
#audiobargraph_v-barWidth=10
# Bar Height in pixel (integer)
#audiobargraph_v-barHeight=400
[remap] # Audio channel remapper
# Left (integer)
#aout-remap-channel-left=0
# Center (integer)
#aout-remap-channel-center=1
# Right (integer)
#aout-remap-channel-right=2
# Rear left (integer)
#aout-remap-channel-rearleft=3
# Rear center (integer)
#aout-remap-channel-rearcenter=4
# Rear right (integer)
#aout-remap-channel-rearright=5
# Side left (integer)
#aout-remap-channel-middleleft=6
# Side right (integer)
#aout-remap-channel-middleright=7
# Low-frequency effects (integer)
#aout-remap-channel-lfe=8
# Normalize channels (boolean)
#aout-remap-normalize=1
[extract] # Extract RGB component video filter
# RGB component to extract (integer)
#extract-component=16711680
[ts] # MPEG Transport Stream demuxer
# Digital TV Standard (string)
#ts-standard=auto
# Extra PMT (string)
#ts-extra-pmt=
# Trust in-stream PCR (boolean)
#ts-trust-pcr=1
# Set id of ES to PID (boolean)
#ts-es-id-pid=1
# CSA Key (string)
#ts-csa-ck=
# Second CSA Key (string)
#ts-csa2-ck=
# Packet size in bytes to decrypt (integer)
#ts-csa-pkt=188
# Separate sub-streams (boolean)
#ts-split-es=1
# Seek based on percent not time (boolean)
#ts-seek-percent=0
# Check packets continuity counter (boolean)
#ts-cc-check=1
# Only create ES on program sending data (boolean)
#ts-pmtfix-waitdata=1
# Try to generate PAT/PMT if missing (boolean)
#ts-patfix=1
# Try to fix too early PCR (or late DTS) (boolean)
#ts-pcr-offsetfix=1
[telx] # Teletext subtitles decoder
# Override page (integer)
#telx-override-page=-1
# Ignore subtitle flag (boolean)
#telx-ignore-subtitle-flag=0
# Workaround for France (boolean)
#telx-french-workaround=0
[libbluray] # Blu-ray Disc support (libbluray)
# Blu-ray menus (boolean)
#bluray-menu=1
# Region code (string)
#bluray-region=B
[avi] # AVI muxer
# Artist (string)
#sout-avi-artist=
# Date (string)
#sout-avi-date=
# Genre (string)
#sout-avi-genre=
# Copyright (string)
#sout-avi-copyright=
# Comment (string)
#sout-avi-comment=
# Name (string)
#sout-avi-name=
# Subject (string)
#sout-avi-subject=
# Encoder (string)
#sout-avi-encoder=VLC Media Player - 3.0.16 Vetinari
# Keywords (string)
#sout-avi-keywords=
[schroedinger] # Dirac video decoder using libschroedinger
# Rate control method (string)
#sout-schro-rate-control=
# Constant quality factor (float)
#sout-schro-quality=-1.000000
# Noise Threshold (float)
#sout-schro-noise-threshold=-1.000000
# CBR bitrate (kbps) (integer)
#sout-schro-bitrate=-1
# Maximum bitrate (kbps) (integer)
#sout-schro-max-bitrate=-1
# Minimum bitrate (kbps) (integer)
#sout-schro-min-bitrate=-1
# GOP structure (string)
#sout-schro-gop-structure=
# GOP length (integer)
#sout-schro-gop-length=-1
# Chroma format (string)
#sout-schro-chroma-fmt=420
# Picture coding mode (string)
#sout-schro-coding-mode=auto
# Motion Vector precision (string)
#sout-schro-mv-precision=
# Size of motion compensation blocks (string)
#sout-schro-motion-block-size=
# Overlap of motion compensation blocks (string)
#sout-schro-motion-block-overlap=
# Three component motion estimation (integer)
#sout-schro-me-combined=-1
# Enable hierarchical Motion Estimation (integer)
#sout-schro-enable-hierarchical-me=-1
# Number of levels of downsampling (integer)
#sout-schro-downsample-levels=-1
# Enable Global Motion Estimation (integer)
#sout-schro-enable-global-me=-1
# Enable Phase Correlation Estimation (integer)
#sout-schro-enable-phasecorr-me=-1
# Intra picture DWT filter (string)
#sout-schro-intra-wavelet=
# Inter picture DWT filter (string)
#sout-schro-inter-wavelet=
# Number of DWT iterations (integer)
#sout-schro-transform-depth=-1
# Enable multiple quantizers (integer)
#sout-schro-enable-multiquant=-1
# Size of code blocks in each subband (string)
#sout-schro-codeblock-size=
# Prefilter (string)
#sout-schro-filtering=
# Amount of prefiltering (float)
#sout-schro-filter-value=-1.000000
# Enable Scene Change Detection (integer)
#sout-schro-enable-scd=-1
# perceptual weighting method (string)
#sout-schro-perceptual-weighting=
# perceptual distance (float)
#sout-schro-perceptual-distance=-1.000000
# Disable arithmetic coding (integer)
#sout-schro-enable-noarith=-1
# Horizontal slices per frame (integer)
#sout-schro-horiz-slices=-1
# Vertical slices per frame (integer)
#sout-schro-vert-slices=-1
# Force Profile (string)
#sout-schro-force-profile=
[deinterlace] # Deinterlacing video filter
# Streaming deinterlace mode (string)
#sout-deinterlace-mode=blend
# Phosphor chroma mode for 4:2:0 input (integer)
#sout-deinterlace-phosphor-chroma=2
# Phosphor old field dimmer strength (integer)
#sout-deinterlace-phosphor-dimmer=2
[stream_out_standard] # Standard stream output
# Output access method (string)
#sout-standard-access=
# Output muxer (string)
#sout-standard-mux=
# Output destination (string)
#sout-standard-dst=
# Address to bind to (helper setting for dst) (string)
#sout-standard-bind=
# Filename for stream (helper setting for dst) (string)
#sout-standard-path=
# SAP announcing (boolean)
#sout-standard-sap=0
# Session name (string)
#sout-standard-name=
# Session description (string)
#sout-standard-description=
# Session URL (string)
#sout-standard-url=
# Session email (string)
#sout-standard-email=
[adaptive] # Unified adaptive streaming for DASH/HLS
# Adaptive Logic (string)
#adaptive-logic=
# Maximum device width (integer)
#adaptive-maxwidth=0
# Maximum device height (integer)
#adaptive-maxheight=0
# Fixed Bandwidth in KiB/s (integer)
#adaptive-bw=250
# Use regular HTTP modules (boolean)
#adaptive-use-access=0
# Live Playback delay (ms) (integer)
#adaptive-livedelay=15000
# Max buffering (ms) (integer)
#adaptive-maxbuffer=30000
# Low latency (integer)
#adaptive-lowlatency=-1
[erase] # Erase video filter
# Image mask (string)
#erase-mask=
# X coordinate (integer)
#erase-x=0
# Y coordinate (integer)
#erase-y=0
[ps] # MPEG-PS demuxer
# Trust MPEG timestamps (boolean)
#ps-trust-timestamps=1
[aribsub] # ARIB subtitles decoder
# Ignore ruby (furigana) (boolean)
#aribsub-ignore-ruby=0
# Use Core Text renderer (boolean)
#aribsub-use-coretext=0
[kate] # Kate overlay decoder
# Formatted Subtitles (boolean)
#kate-formatted=1
[bridge] # Bridge stream output
# ID (integer)
#sout-bridge-out-id=0
# Destination bridge-in name (string)
#sout-bridge-out-in-name=default
# Delay (integer)
#sout-bridge-in-delay=0
# ID Offset (integer)
#sout-bridge-in-id-offset=8192
# Name of current instance (string)
#sout-bridge-in-name=default
# Fallback to placeholder stream when out of data (boolean)
#sout-bridge-in-placeholder=0
# Placeholder delay (integer)
#sout-bridge-in-placeholder-delay=200
# Wait for I frame before toggling placeholder (boolean)
#sout-bridge-in-placeholder-switch-on-iframe=1
[filesystem] # File input
# List special files (boolean)
#list-special-files=0
[netsync] # Network synchronization
# Network master clock (boolean)
#netsync-master=0
# Master server IP address (string)
#netsync-master-ip=
# UDP timeout (in ms) (integer)
#netsync-timeout=500
[jpeg] # JPEG image decoder
# Quality level (integer)
#sout-jpeg-quality=95
[es] # MPEG-I/II/4 / A52 / DTS / MLP audio
# Frames per Second (float)
#es-fps=25.000000
[audiotoolbox_midi] # AudioToolbox MIDI synthesizer
# SoundFont file (string)
#aumidi-soundfont=
[http] # HTTP input
# Auto re-connect (boolean)
#http-reconnect=0
[param_eq] # Parametric Equalizer
# Low freq (Hz) (float)
#param-eq-lowf=100.000000
# Low freq gain (dB) (float)
#param-eq-lowgain=0.000000
# High freq (Hz) (float)
#param-eq-highf=10000.000000
# High freq gain (dB) (float)
#param-eq-highgain=0.000000
# Freq 1 (Hz) (float)
#param-eq-f1=300.000000
# Freq 1 gain (dB) (float)
#param-eq-gain1=0.000000
# Freq 1 Q (float)
#param-eq-q1=3.000000
# Freq 2 (Hz) (float)
#param-eq-f2=1000.000000
# Freq 2 gain (dB) (float)
#param-eq-gain2=0.000000
# Freq 2 Q (float)
#param-eq-q2=3.000000
# Freq 3 (Hz) (float)
#param-eq-f3=3000.000000
# Freq 3 gain (dB) (float)
#param-eq-gain3=0.000000
# Freq 3 Q (float)
#param-eq-q3=3.000000
[dav1d] # Dav1d video decoder
# Frames Threads (integer)
#dav1d-thread-frames=0
# Tiles Threads (integer)
#dav1d-thread-tiles=0
[cdda] # Audio CD input
# Audio CD device (string)
#cd-audio=/dev/cdrom
# CDDB Server (string)
#cddb-server=freedb.videolan.org
# CDDB port (integer)
#cddb-port=80
[gradfun] # Gradfun video filter
# Radius (integer)
#gradfun-radius=16
# Strength (float)
#gradfun-strength=1.200000
[x264] # H.264/MPEG-4 Part 10/AVC encoder (x264)
# Maximum GOP size (integer)
#sout-x264-keyint=250
# Minimum GOP size (integer)
#sout-x264-min-keyint=25
# Use recovery points to close GOPs (boolean)
#sout-x264-opengop=0
# Enable compatibility hacks for Blu-ray support (boolean)
#sout-x264-bluray-compat=0
# Extra I-frames aggressivity (integer)
#sout-x264-scenecut=40
# B-frames between I and P (integer)
#sout-x264-bframes=3
# Adaptive B-frame decision (integer)
#sout-x264-b-adapt=1
# Influence (bias) B-frames usage (integer)
#sout-x264-b-bias=0
# Keep some B-frames as references (string)
#sout-x264-bpyramid=normal
# CABAC (boolean)
#sout-x264-cabac=1
# Use fullrange instead of TV colorrange (boolean)
#sout-x264-fullrange=0
# Number of reference frames (integer)
#sout-x264-ref=3
# Skip loop filter (boolean)
#sout-x264-nf=0
# Loop filter AlphaC0 and Beta parameters alpha:beta (string)
#sout-x264-deblock=0:0
# Strength of psychovisual optimization, default is "1.0:0.0" (string)
#sout-x264-psy-rd=1.0:0.0
# Use Psy-optimizations (boolean)
#sout-x264-psy=1
# H.264 level (string)
#sout-x264-level=0
# H.264 profile (string)
#sout-x264-profile=high
# Interlaced mode (boolean)
#sout-x264-interlaced=0
# Frame packing (integer)
#sout-x264-frame-packing=-1
# Force number of slices per frame (integer)
#sout-x264-slices=0
# Limit the size of each slice in bytes (integer)
#sout-x264-slice-max-size=0
# Limit the size of each slice in macroblocks (integer)
#sout-x264-slice-max-mbs=0
# HRD-timing information (string)
#sout-x264-hrd=none
# Set QP (integer)
#sout-x264-qp=-1
# Quality-based VBR (integer)
#sout-x264-crf=23
# Min QP (integer)
#sout-x264-qpmin=10
# Max QP (integer)
#sout-x264-qpmax=51
# Max QP step (integer)
#sout-x264-qpstep=4
# Average bitrate tolerance (float)
#sout-x264-ratetol=1.000000
# Max local bitrate (integer)
#sout-x264-vbv-maxrate=0
# VBV buffer (integer)
#sout-x264-vbv-bufsize=0
# Initial VBV buffer occupancy (float)
#sout-x264-vbv-init=0.900000
# QP factor between I and P (float)
#sout-x264-ipratio=1.400000
# QP factor between P and B (float)
#sout-x264-pbratio=1.300000
# QP difference between chroma and luma (integer)
#sout-x264-chroma-qp-offset=0
# Multipass ratecontrol (integer)
#sout-x264-pass=0
# QP curve compression (float)
#sout-x264-qcomp=0.600000