-
Notifications
You must be signed in to change notification settings - Fork 121
/
vlc命令行.txt
1720 lines (1554 loc) · 74.2 KB
/
vlc命令行.txt
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
URL syntax:
[file://]filename Plain media file
http://ip:port/file HTTP URL
ftp://ip:port/file FTP URL
mms://ip:port/file MMS URL
screen:// Screen capture
[dvd://][device][@raw_device] DVD device
[vcd://][device] VCD device
[cdda://][device] Audio CD device
udp:[[<source address>]@[<bind address>][:<bind port>]]
UDP stream sent by a streaming server
vlc:pause:<seconds> Special item to pause the playlist for a certain time
vlc:quit Special item to quit VLC
standard:标准输出
--access : 设定传输媒介
file
udp
http
https
mmsh
rtp
--mux : 封装方式
ts
ps
mpegl
ogg
asf
asfh
avi
mpjpeg
--dst : 地址
file:存储路径
dup/rtp:单播/多播地址 格式: IP:PORT
--sap :服务发现协议 仅用在 UDP模式下
--group :分组 仅VLC能够读出 用于SAP下
--slp :
--name :用于SAP/SLP 下 为流命名
transcode:转换
--vcodec : 转换成的编码
--vb : 视频码率
--venc : 选择编码器
--fps : 帧数
--deinterlace :交错
--croptop,cropbottom,cropleft,cropright :裁剪
--scale : 比例
--width/height : 宽/高
--acodec : 音频编码
--ab : 音频码率
--aenc : 音频编码器选择
--samplerate: 采样率
--channels: 声道
--scodec :字幕
--senc : 字幕转换器选择
--soverlay:字幕直接显示在视频上
--sfilter : 视频上加logo
--threads : 多线程转换
--audio-sync :video/audio同步
duplicate:复制
es:分离基本码流
vlc input_stream --sout "#module1{option1=parameter1{parameter-option1},option2=parameter2}:module2{option1=...,option2=...}:..."
vlc模拟udp
vlc -vvv sample1.avi --sout udp://192.168.1.100:1234 --ttl 10
使用广播地址xxx.xxx.xxx.255可在局域网广播
客户端播放:vlc udp://@:1234
客户端接收并保存为文件:vlc udp://@:1234 --sout /path/temp.ts
vlc模拟RTP协议
vlc -vvv sample1.avi --sout "#transcode{vcodec=h264,vb=0,scale=0,acodec=mpga,ab=128,channels=2,samplerate=44100}:rtp{dst=192.168.1.100,port=5004,mux=ts,ttl=10}"
客户端接收播放:vlc rtp://@:5004
vlc模拟RTSP
vlc -vvv sample1.avi --sout "#transcode{vcodec=h264,vb=0,scale=0,acodec=mpga,ab=128,channels=2,samplerate=44100}:rtp{sdp=rtsp://:8554/test}"
客户端:vlc rtsp://192.168.1.1:8554/test
vlc模拟HTTP
vlc -vvv sample1.avi --sout "#transcode{vcodec=h264,vb=0,scale=0,acodec=mpga,ab=128,channels=2,samplerate=44100}:http{mux=ffmpeg{mux=flv},dst=:8080/test}"
客户端:vlc http://192.168.1.1:8080/test
URL syntax:
[file://]filename Plain media file
http://ip:port/file HTTP URL
ftp://ip:port/file FTP URL
mms://ip:port/file MMS URL
screen:// Screen capture
[dvd://][device][@raw_device] DVD device
[vcd://][device] VCD device
[cdda://][device] Audio CD device
udp:[[<source address>]@[<bind address>][:<bind port>]]
UDP stream sent by a streaming server
vlc:pause:<seconds> Special item to pause the playlist for a certain time
vlc:quit Special item to quit VLC
音频
--audio, --no-audio 打开音频 (默认打开)
--volume <整型> 默认音量
--volume-step <整型> 输出音量步长
--aout-rate <整型> 音频输出频率(Hz)
--hq-resampling, --no-hq-resampling
高质量音频采样 (默认打开)
--spdif, --no-spdif 当可用时使用 S/PDIF 音频输出
(默认关闭)
--force-dolby-surround {0 (自动), 1 (开), 2 (关)}
强制检测杜比环绕
--audio-desync <整型> 音频异步校正
--aout <字符串型> 音频输出模块
--audio-filter <字符串型>
音频滤波器
--audio-visual <字符串型>
音频视觉效果
视频
--video, --no-video 启动视频 (默认打开)
--grayscale, --no-grayscale
灰度视频输出 (默认关闭)
-f, --fullscreen, --no-fullscreen
全屏幕视频输出 (默认关闭)
--drop-late-frames, --no-drop-late-frames
丢弃晚的帧 (默认打开)
--skip-frames, --no-skip-frames
跳过帧 (默认打开)
--quiet-synchro, --no-quiet-synchro
静音同步 (默认关闭)
--overlay, --no-overlay 重叠视频输出 (默认打开)
--video-on-top, --no-video-on-top
永远在最上层 (默认关闭)
--disable-screensaver, --no-disable-screensaver
关闭屏幕保护程序 (默认打开)
--snapshot-path <字符串型>
视频快照目录 (或文件名)
--snapshot-prefix <字符串型>
视频快照文件前缀
--snapshot-format {png,jpg}
视频快照格式
--snapshot-preview, --no-snapshot-preview
显示视频快照预览 (默认打开)
--snapshot-sequential, --no-snapshot-sequential
Use sequential numbers instead of timestamps
(默认关闭)
--width <整型> 视频宽度
--height <整型> 视频高度
--video-x <整型> 视频 X 坐标
--video-y <整型> 视频 Y 坐标
--crop <字符串型> 视频修整
--custom-crop-ratios <字符串型>
自定义修整比率列表
--aspect-ratio <字符串型>
源比率
--monitor-par <字符串型>
监视器像素纵横比
--custom-aspect-ratios <字符串型>
自定义纵横比列表
--hdtv-fix, --no-hdtv-fix 固定 HDTV 高度 (默认打开)
--video-deco, --no-video-deco
窗口装饰 (默认打开)
--video-title <字符串型>
视频标题
--align {0 (居中), 1 (左), 2 (右), 4 (顶部), 8 (底部), 5 (左上), 6 (右上), 9 (左下), 10 (右下)}
视频对齐
--zoom <浮点型> 缩放视频
-V, --vout <字符串型> 视频输出模块
--vout-filter <字符串型>
视频过滤器模块
子画面
--spu, --no-spu 启用子画面 (默认打开)
--osd, --no-osd 画面上显示(OSD) (默认打开)
--text-renderer <字符串型>
字体渲染模块
--sub-file <字符串型> 使用字幕文件
--sub-autodetect-file, --no-sub-autodetect-file
自动侦测字幕档 (默认打开)
--sub-autodetect-fuzzy <整型>
字幕自动侦测模糊化
--sub-autodetect-path <字符串型>
字幕自动侦测路径
--sub-margin <整型> 强制字幕位置
--sub-filter <字符串型>
子画面过滤器模块
--program <整型> 程序
--programs <字符串型> 程序
--audio-track <整型> 音轨
--sub-track <整型> 字幕轨
--audio-language <字符串型>
音频语言
--sub-language <字符串型>
字幕语言
--audio-track-id <整型> 音轨 ID
--sub-track-id <整型> 字幕轨 ID
--input-repeat <整型> 输入重复
--start-time <整型> 开始时间
--stop-time <整型> 停止时间
--input-list <字符串型>
输入清单
--input-slave <字符串型>
从输入(试验性的)
--bookmarks <字符串型> 串流书签清单
--dvd <字符串型> DVD装置
--vcd <字符串型> VCD 设备
--cd-audio <字符串型> 音乐 CD 设备
--server-port <整型> UDP 端口
--mtu <整型> 网络接口的MTU
-6, --ipv6, --no-ipv6 强制使用 IPv6 (默认关闭)
-4, --ipv4, --no-ipv4 强制使用 IPv4 (默认关闭)
--ipv4-timeout <整型> TCP连接超时时间
--socks <字符串型> SOCKS服务器
--socks-user <字符串型>
SOCKS使用者名称
--socks-pwd <字符串型> SOCKS密码
--meta-title <字符串型>
标题数据
--meta-author <字符串型>
作者元数据
--meta-artist <字符串型>
艺术家元数据
--meta-genre <字符串型>
流派元数据
--meta-copyright <字符串型>
版权元数据
--meta-description <字符串型>
描述元数据
--meta-date <字符串型> 日期元数据
--meta-url <字符串型> 网址元数据
--cr-average <整型> 时钟参考平均计数器
--clock-synchro {-1 (默认), 0 (关闭), 1 (启动)}
时钟同步
--network-synchronisation, --no-network-synchronisation
网络同步化 (默认关闭)
译码器
--codec <字符串型> 偏好的解码器清单
--encoder <字符串型> 偏好的编码器清单
输入
--access <字符串型> 存取模块
--access-filter <字符串型>
存取过滤器模块
--demux <字符串型> 解多任务模块
串流输出
--sout <字符串型> 默认串流输出链
--sout-display, --no-sout-display
串流时显示 (默认关闭)
--sout-keep, --no-sout-keep
持续开启串流输出 (默认关闭)
--sout-all, --no-sout-all 打开串流所有 ES (默认关闭)
--sout-audio, --no-sout-audio
启动音频串流输出 (默认打开)
--sout-video, --no-sout-video
启动视频串流输出 (默认打开)
--sout-spu, --no-sout-spu 启动 SPU 串流输出 (默认打开)
--vlm-conf <字符串型> VLM设置档
--mux <字符串型> 多任务模块
--access_output <字符串型>
存取输出模块
--ttl <整型> Hop 限制 (TTL)
--miface <字符串型> IPv6 多播输出接口
--miface-addr <字符串型>
IPv4 多播输出接口地址
--packetizer <字符串型>
偏好的封包器清单
--sap-flow-control, --no-sap-flow-control
控制SAP流量 (默认关闭)
--sap-interval <整型> SAP 通告间隔
CPU
--fpu, --no-fpu 启用 FPU 支持 (默认打开)
--mmx, --no-mmx 启用 CPU MMX 支持 (默认打开)
--3dn, --no-3dn 启用 CPU 3D Now! 支持 (默认打开)
--mmxext, --no-mmxext 启用 CPU MMX EXT 支持 (默认打开)
--sse, --no-sse 启用 CPU SSE 支持 (默认打开)
--sse2, --no-sse2 启用 CPU SSE2 支持 (默认打开)
杂项
-A, --memcpy <字符串型> 内存复制模块
--plugins-cache, --no-plugins-cache
使用外挂缓存 (默认打开)
--plugin-path <字符串型>
模块搜寻路径
--minimize-threads, --no-minimize-threads
最小线程数量 (默认关闭)
--one-instance, --no-one-instance
只允许一个实例运行 (默认关闭)
--started-from-file, --no-started-from-file
VLC 从文件关联启动 (默认关闭)
--one-instance-when-started-from-file, --no-one-instance-when-started-from-file
当从文件开始时只允许一个实例
(默认打开)
--playlist-enqueue, --no-playlist-enqueue
Enqueue items to playlist when in one
instance mode (默认关闭)
--high-priority, --no-high-priority
提高程序优先权 (默认关闭)
--fast-mutex, --no-fast-mutex
Fast mutex on NT/2K/XP (developers only)
(默认关闭)
--win9x-cv-method <整型> Condition variables implementation for Win9x
(developers only)
播放列表
-Z, --random, --no-random 永远随机播放文件 (默认关闭)
-L, --loop, --no-loop 重复播放全部 (默认关闭)
-R, --repeat, --no-repeat 重复播放目前项目 (默认关闭)
--play-and-stop, --no-play-and-stop
播放和停止 (默认关闭)
--open <字符串型> 默认串流
--auto-preparse, --no-auto-preparse
自动预解释文件 (默认打开)
-S, --services-discovery <字符串型>
服务探索模块
-v, --verbose <整型> 提示(0,1,2)
-q, --quiet, --no-quiet 安静 (默认关闭)
--file-logging, --no-file-logging
记录到文件 (默认关闭)
--language {auto,en,en_GB,ar,ca,cs,da,de,es,fa,fr,gl,he,hu,it,ja,ka,ko,ms,ne,nl,oc,pl,pt_BR,ro,ru,sk,sl,sv,th,tr,zh_CN,zh_TW}
语言
--color, --no-color 色彩化讯息 (默认关闭)
--advanced, --no-advanced 显示高级选项 (默认打开)
--interact, --no-interact 界面互动 (默认打开)
--show-intf, --no-show-intf
用鼠标来显示界面 (默认关闭)
--stats, --no-stats 收集统计信息 (默认打开)
-I, --intf <字符串型> 界面模块
--extraintf <字符串型> 额外界面模块
--control <字符串型> 控制界面
热键
--key-fullscreen <整型> 全屏幕
--key-play-pause <整型> 播放/暂停
--key-pause <整型> 仅暂停
--key-play <整型> 仅播放
--key-faster <整型> 加快
--key-slower <整型> 放慢
--key-next <整型> 下一项
--key-prev <整型> 上一项
--key-stop <整型> 停止
--key-position <整型> 位置
--key-jump-extrashort <整型>
向后跳一很小的段
--key-jump+extrashort <整型>
向前跳一很小的段
--key-jump-short <整型> 向后跳一小段
--key-jump+short <整型> 向前跳一小段
--key-jump-medium <整型> 向后跳一中段
--key-jump+medium <整型> 向前跳一中段
--key-jump-long <整型> 向后跳一大段
--key-jump+long <整型> 向前跳一大段
--key-nav-activate <整型>
启动
--key-nav-up <整型> 向上导览
--key-nav-down <整型> 向下导览
--key-nav-left <整型> 向左导览
--key-nav-right <整型> 向右导览
--key-disc-menu <整型> 转到DVD选单
--key-title-prev <整型> 选择上一个DVD章节
--key-title-next <整型> 选择下一个DVD章节
--key-chapter-prev <整型>
选择上一个 DVD 章节
--key-chapter-next <整型>
选择下一个 DVD 章节
--key-quit <整型> 离开
--key-vol-up <整型> 增加音量
--key-vol-down <整型> 减低音量
--key-vol-mute <整型> 静音
--key-subdelay-up <整型> 增加字幕延迟
--key-subdelay-down <整型>
减少字幕延迟
--key-audiodelay-up <整型>
增加音频延迟
--key-audiodelay-down <整型>
减少音频延迟
--key-audio-track <整型> 循环音轨
--key-subtitle-track <整型>
循环字幕轨
--key-aspect-ratio <整型>
循环源纵横比
--key-crop <整型> 循环视频修整
--key-deinterlace <整型> 循环解除交错模块
--key-intf-show <整型> 显示界面
--key-intf-hide <整型> 隐藏接口
--key-snapshot <整型> 获取视频快照
--key-history-back <整型>
在浏览历史中后退
--key-history-forward <整型>
在浏览历史中前进
--key-record <整型> 录制
--key-dump <整型> 倾倒
--key-crop-top <整型> 在视频顶部修剪一个像素
--key-uncrop-top <整型> 不在视频顶部修剪一个像素
--key-crop-left <整型> 在视频左侧修剪一个像素
--key-uncrop-left <整型> 不在视频左侧修剪一个像素
--key-crop-bottom <整型> 在视频底部修剪一个像素
--key-uncrop-bottom <整型>
不在视频底部修剪一个像素
--key-crop-right <整型> 从视频右侧修剪一个像素
--key-uncrop-right <整型>
不在视频右部修剪一个像素
--extrashort-jump-size <整型>
跳一很小的段的长度
--short-jump-size <整型> 跳一小段的长度
--medium-jump-size <整型>
跳一中段的长度
--long-jump-size <整型> 长跳长度
--key-set-bookmark1 <整型>
设置播放列表书签 1
--key-set-bookmark2 <整型>
设置播放列表书签 2
--key-set-bookmark3 <整型>
设置播放列表书签 3
--key-set-bookmark4 <整型>
设置播放列表书签 4
--key-set-bookmark5 <整型>
设置播放列表书签 5
--key-set-bookmark6 <整型>
设置播放列表书签 6
--key-set-bookmark7 <整型>
设置播放列表书签 7
--key-set-bookmark8 <整型>
设置播放列表书签 8
--key-set-bookmark9 <整型>
设置播放列表书签 9
--key-set-bookmark10 <整型>
设置播放列表书签 10
--key-play-bookmark1 <整型>
播放播放列表书签 1
--key-play-bookmark2 <整型>
播放播放列表书签 2
--key-play-bookmark3 <整型>
播放播放列表书签 3
--key-play-bookmark4 <整型>
播放播放列表书签 4
--key-play-bookmark5 <整型>
播放播放列表书签 5
--key-play-bookmark6 <整型>
播放播放列表书签 6
--key-play-bookmark7 <整型>
播放播放列表书签 7
--key-play-bookmark8 <整型>
播放播放列表书签 8
--key-play-bookmark9 <整型>
播放播放列表书签 9
--key-play-bookmark10 <整型>
播放播放列表书签 10
--bookmark1 <字符串型> 播放列表书签 1
--bookmark2 <字符串型> 播放列表书签 2
--bookmark3 <字符串型> 播放列表书签 3
--bookmark4 <字符串型> 播放列表书签 4
--bookmark5 <字符串型> 播放列表书签 5
--bookmark6 <字符串型> 播放列表书签 6
--bookmark7 <字符串型> 播放列表书签 7
--bookmark8 <字符串型> 播放列表书签 8
--bookmark9 <字符串型> 播放列表书签 9
--bookmark10 <字符串型>
播放列表书签 10
Help options
-h, --help print help for VLC (can be combined with
--advanced)
-H, --longhelp print help for VLC and all its modules (can
be combined with --advanced)
--advanced 打印高级选项的帮助信息
--help-verbose ask for extra verbosity when displaying help
-l, --list 打印一个可用模块的列表
-p, --module <字符串型> print help on a specific module (can be
combined with --advanced)
--save-config 在配置中保存当前的命令行选项
--reset-config 将当前设置复位为默认值
--config <字符串型> 使用替代的组态档
--reset-plugins-cache 重置目前外挂缓存
--version 打印版本信息
live.com (RTSP/RTP/SDP) 分离器
--rtsp-tcp, --no-rtsp-tcp 在 RTSP 上使用 RTP (TCP) (默认关闭)
--rtp-client-port <整型> 客户端端口
--rtsp-http, --no-rtsp-http
Tunnel RTSP and RTP over HTTP (默认关闭)
--rtsp-http-port <整型> HTTP 隧道端口
--rtsp-caching <整型> 缓存值 (毫秒)
--rtsp-kasenna, --no-rtsp-kasenna
Kasenna RTSP dialect (默认关闭)
--rtsp-user <字符串型> RTSP 用户名
--rtsp-pwd <字符串型> RTSP 密码
TS 复用器 (libdvbpsi)
--sout-ts-pid-video <整型>
视频PID
--sout-ts-pid-audio <整型>
音频PID
--sout-ts-pid-spu <整型> SPU PID
--sout-ts-pid-pmt <整型> PMT PID
--sout-ts-tsid <整型> TS ID
--sout-ts-netid <整型> NET ID
--sout-ts-program-pmt <字符串型>
PMT 程序数量
--sout-ts-es-id-pid, --no-sout-ts-es-id-pid
将 PID 设为 ES 的 ID (默认关闭)
--sout-ts-muxpmt <字符串型>
Mux PMT (requires --sout-ts-es-id-pid)
--sout-ts-sdtdesc <字符串型>
SDT Descriptors (requires --sout-ts-es-id-pid)
--sout-ts-alignment, --no-sout-ts-alignment
数据对齐 (默认打开)
--sout-ts-shaping <整型> Shaping delay (ms)
--sout-ts-use-key-frames, --no-sout-ts-use-key-frames
使用关键帧 (默认关闭)
--sout-ts-pcr <整型> PCR延迟(ms)
--sout-ts-bmin <整型> 最小的 B (不推荐使用)
--sout-ts-bmax <整型> 最大的 B (不推荐使用)
--sout-ts-dts-delay <整型>
DTS 延迟
--sout-ts-crypt-audio, --no-sout-ts-crypt-audio
加密音频 (默认打开)
--sout-ts-crypt-video, --no-sout-ts-crypt-video
加密视频 (默认打开)
--sout-ts-csa-ck <字符串型>
CSA 密钥
--sout-ts-csa-pkt <整型> 要加密的包的 大小
ATSC A/52 (AC-3)音频译码器
--a52-dynrng, --no-a52-dynrng
A/52 dynamic range compression (默认打开)
--a52-upmix, --no-a52-upmix
Enable internal upmixing (默认关闭)
标准文件目录输入
--recursive {none,collapse,expand}
子目录行为
--ignore-filetypes <字符串型>
忽略的扩展
假输入
--fake-caching <整型> 缓存值 (毫秒)
--fake-fps <浮点型> 帧率
--fake-id <整型> ID
--fake-duration <整型> 长度(毫秒)
文件输入
--file-caching <整型> 缓存值 (毫秒)
--file-cat <字符串型> Concatenate with additional files
倾倒
--dump-force, --no-dump-force
Force use of dump module (默认关闭)
--dump-margin <整型> Maximum size of temporary file (Mb)
录制
--record-path <字符串型>
录制目录
时间差
--timeshift-granularity <整型>
Timeshift granularity
--timeshift-dir <字符串型>
时间差目录
--timeshift-force, --no-timeshift-force
Force use of the timeshift module
(默认关闭)
FTP 输入
--ftp-caching <整型> 缓存值 (毫秒)
--ftp-user <字符串型> FTP 用户名
--ftp-pwd <字符串型> FTP 密码
--ftp-account <字符串型>
FTP 账户
HTTP输入
--http-proxy <字符串型>
HTTP 代理
--http-caching <整型> 缓存值 (毫秒)
--http-user-agent <字符串型>
HTTP 用户代理
--http-reconnect, --no-http-reconnect
自动重新连接 (默认关闭)
--http-continuous, --no-http-continuous
连续流 (默认关闭)
Microsoft Media Server (MMS)输入
--mms-caching <整型> 缓存值 (毫秒)
--mms-all, --no-mms-all Force selection of all streams (默认关闭)
--mms-maxbitrate <整型> 最大比特率
文件串流输出
--sout-file-append, --no-sout-file-append
追加到文件 (默认关闭)
HTTP 串流输出
--sout-http-user <字符串型>
用户名
--sout-http-pwd <字符串型>
密码
--sout-http-mime <字符串型>
Mime
--sout-http-cert <字符串型>
证书文件
--sout-http-key <字符串型>
私钥文件
--sout-http-ca <字符串型>
根 CA 文件
--sout-http-crl <字符串型>
CRL 文件
--sout-http-bonjour, --no-sout-http-bonjour
Advertise with Bonjour (默认关闭)
IceCAST 输出
--sout-shout-name <字符串型>
串流名称
--sout-shout-description <字符串型>
串流描述
--sout-shout-mp3, --no-sout-shout-mp3
串流 MP3 (默认关闭)
UDP 串流输出
--sout-udp-caching <整型>
缓存值 (毫秒)
--sout-udp-ttl <整型> 有效时间(TTL)
--sout-udp-group <整型> Group packets
--sout-udp-raw, --no-sout-udp-raw
Raw 写入 (默认关闭)
Real RTSP
--realrtsp-caching <整型>
缓存值 (毫秒)
SMB输入
--smb-caching <整型> 缓存值 (毫秒)
--smb-user <字符串型> SMB 用户名
--smb-pwd <字符串型> SMB 密码
--smb-domain <字符串型>
SMB 域
TCP输入
--tcp-caching <整型> 缓存值 (毫秒)
UDP/RTP 输入
--udp-caching <整型> 缓存值 (毫秒)
--rtp-late <整型> RTP reordering timeout in ms
--udp-auto-mtu, --no-udp-auto-mtu
自动检测 MTU (默认打开)
图像属性过滤器
--contrast <浮点型> 影像对比(0-2)
--brightness <浮点型> 影像亮度(0-2)
--hue <整型> 影像色调(0-360)
--saturation <浮点型> 影像饱和度(0-3)
--gamma <浮点型> 影像反差系数(0-10)
--brightness-threshold, --no-brightness-threshold
亮度阈值 (默认关闭)
DirectX音频输出
--directx-audio-device <整型>
输出装置
--directx-audio-float32, --no-directx-audio-float32
使用float32输出 (默认关闭)
文件音频输出
--audiofile-format {u8,s8,u16,s16,u16_le,s16_le,u16_be,s16_be,fixed32,float32,spdif}
输出格式
--audiofile-channels <整型>
输出频道数量
--audiofile-file <字符串型>
输出文件
--audiofile-wav, --no-audiofile-wav
加入 WAVE 头部 (默认打开)
AVI 分离器
--avi-interleaved, --no-avi-interleaved
Force interleaved method (默认关闭)
--avi-index {0 (询问), 1 (永远固定), 2 (从不修复)}
Force index creation
音频 CD 输入
--cdda-caching <整型> 缓存值 (毫秒)
--cdda-separate-tracks, --no-cdda-separate-tracks
(null) (默认打开)
--cdda-track <整型> (null)
--cddb-server <字符串型>
CDDB 服务器
--cddb-port <整型> CDDB 服务器端口
复制视频过滤器
--clone-count <整型> 复制数量
--clone-vout-list <字符串型>
视频输出模块
修整视频过滤器
--crop-geometry <字符串型>
修剪几何图形 (像素)
--autocrop, --no-autocrop 自动修整 (默认关闭)
解除交错视频过滤器
--deinterlace-mode {discard,blend,mean,bob,linear,x}
解除交错模式
--sout-deinterlace-mode {discard,blend,mean,bob,linear,x}
串流解除交错模式
文件 dumpper
--demuxdump-file <字符串型>
Dump 文件名
--demuxdump-append, --no-demuxdump-append
追加到现有文件 (默认关闭)
扭曲视频过滤器
--distort-mode {wave,ripple,gradient,edge,hough,psychedelic}
扭曲模式
--distort-gradient-type <整型>
灰度图像类型
--distort-cartoon, --no-distort-cartoon
应用动画效果 (默认打开)
DTS Coherent Acoustics audio decoder
--dts-dynrng, --no-dts-dynrng
DTS dynamic range compression (默认打开)
虚拟接口功能
--dummy-quiet, --no-dummy-quiet
不要开启DOS指令窗口接口
(默认关闭)
--dummy-save-es, --no-dummy-save-es
储存空白编码器数据 (默认关闭)
--dummy-chroma <字符串型>
虚拟影像彩度格式
DVB 字幕译码器
--dvbsub-position {0 (居中), 1 (左), 2 (右), 4 (顶部), 8 (底部), 5 (左上), 6 (右上), 9 (左下), 10 (右下)}
子图像位置
--dvbsub-x <整型> 解码 X 坐标
--dvbsub-y <整型> 解码 Y 坐标
--sout-dvbsub-x <整型> 编码 X 坐标
--sout-dvbsub-y <整型> 编码 Y 坐标
DVDnav输入
--dvdnav-angle <整型> DVD 角度
--dvdnav-caching <整型> 缓存值 (毫秒)
--dvdnav-menu, --no-dvdnav-menu
直接从菜单开始 (默认打开)
DVDRead 输入 (无菜单支持的 DVD)
--dvdread-angle <整型> DVD 角度
--dvdread-caching <整型> 缓存值 (毫秒)
--dvdread-css-method {title,disc,key}
libdvdcss 解密的方式
Equalizer with 10 bands
--equalizer-preset {flat,classical,club,dance,fullbass,fullbasstreble,fulltreble,headphones,largehall,live,party,pop,reggae,rock,ska,soft,softrock,techno}
均衡器预设
--equalizer-bands <字符串型>
频带增益
--equalizer-2pass, --no-equalizer-2pass
Two pass (默认关闭)
--equalizer-preamp <浮点型>
全域增益
伪视频译码器
--fake-file <字符串型> 图像文件
--fake-width <整型> 视频宽度
--fake-height <整型> 视频高度
--fake-keep-ar, --no-fake-keep-ar
保持纵横比 (默认关闭)
--fake-aspect-ratio <字符串型>
背景分辨率
--fake-deinterlace, --no-fake-deinterlace
解除交错视频 (默认关闭)
--fake-deinterlace-module {deinterlace,ffmpeg-deinterlace}
解除交错模块
FFmpeg audio/video decoder/encoder ((MS)MPEG4,SVQ1,H263,WMV,WMA)
--ffmpeg-dr, --no-ffmpeg-dr
Direct rendering (默认打开)
--ffmpeg-error-resilience <整型>
Error resilience
--ffmpeg-workaround-bugs <整型>
Workaround bugs
--ffmpeg-hurry-up, --no-ffmpeg-hurry-up
快速 (默认关闭)
--ffmpeg-vismv <整型> Visualize motion vectors
--ffmpeg-lowres <整型> 低分辨率译码
--ffmpeg-skiploopfilter {0 (无), 1 (Non-ref), 2 (Bidir), 3 (Non-key), 4 (全部)}
Skip the loop filter for H.264 decoding
--ffmpeg-pp-q <整型> 后处理质量
--ffmpeg-pp-name <字符串型>
FFmpeg post processing filter chains
--ffmpeg-debug <整型> 调试掩码
--sout-ffmpeg-hq {rd,bits,simple}
质量等级
--sout-ffmpeg-keyint <整型>
Ratio of key frames
--sout-ffmpeg-bframes <整型>
Ratio of B frames
--sout-ffmpeg-hurry-up, --no-sout-ffmpeg-hurry-up
快速 (默认关闭)
--sout-ffmpeg-interlace, --no-sout-ffmpeg-interlace
交错编码 (默认关闭)
--sout-ffmpeg-interlace-me, --no-sout-ffmpeg-interlace-me
Interlaced motion estimation (默认打开)
--sout-ffmpeg-vt <整型> 视频比特率容忍度
--sout-ffmpeg-pre-me, --no-sout-ffmpeg-pre-me
动作前估计 (默认关闭)
--sout-ffmpeg-strict-rc, --no-sout-ffmpeg-strict-rc
Strict rate control (默认关闭)
--sout-ffmpeg-rc-buffer-size <整型>
Rate control buffer size
--sout-ffmpeg-rc-buffer-aggressivity <浮点型>
Rate control buffer aggressiveness
--sout-ffmpeg-i-quant-factor <浮点型>
I quantization factor
--sout-ffmpeg-noise-reduction <整型>
噪声消除
--sout-ffmpeg-mpeg4-matrix, --no-sout-ffmpeg-mpeg4-matrix
MPEG4 quantization matrix (默认关闭)
--sout-ffmpeg-qmin <整型>
Minimum video quantizer scale
--sout-ffmpeg-qmax <整型>
Maximum video quantizer scale
--sout-ffmpeg-trellis, --no-sout-ffmpeg-trellis
Trellis quantization (默认关闭)
--sout-ffmpeg-qscale <浮点型>
固定量化器刻度
--sout-ffmpeg-strict <整型>
Strict standard compliance
--sout-ffmpeg-lumi-masking <浮点型>
Luminance masking
--sout-ffmpeg-dark-masking <浮点型>
Darkness masking
--sout-ffmpeg-p-masking <浮点型>
动作遮掩
--sout-ffmpeg-border-masking <浮点型>
边界遮掩
--sout-ffmpeg-luma-elim-threshold <整型>
Luminance elimination
--sout-ffmpeg-chroma-elim-threshold <整型>
Chrominance elimination
Freetype2 字体渲染器
--freetype-font <字符串型>
字体
--freetype-fontsize <整型>
字体大小 (像素)
--freetype-opacity <整型>
不透明
--freetype-color {0 (黑色), 8421504 (灰色), 12632256 (银色), 16777215 (白色), 8388608 (栗色), 16711680 (红色), 16711935 (紫红色), 16776960 (黄色), 8421376 (橄榄色), 32768 (绿色), 32896 (蓝绿色), 65280 (柠檬色), 8388736 (紫色), 128 (藏青色), 255 (蓝色), 65535 (浅绿色)}
文字默认颜色
--freetype-rel-fontsize {20 (更小), 18 (小), 16 (正常), 12 (大), 6 (更大)}
相对字号
--freetype-effect {1 (背景), 2 (大纲), 3 (Fat Outline)}
字体效果
--freetype-yuvp, --no-freetype-yuvp
使用 YUVP 渲染 (默认关闭)
Mouse gestures control interface
--gestures-threshold <整型>
Motion threshold (10-100)
--gestures-button {left,middle,right}
触发按键
GnuTLS TLS 加密层
--tls-check-cert, --no-tls-check-cert
检查 TLS/SSL 服务器证书有效性
(默认打开)
--tls-check-hostname, --no-tls-check-hostname
在证书中检查 TLS/SSL 服务器主机名
(默认打开)
--gnutls-dh-bits <整型> Diffie-Hellman prime bits
--gnutls-cache-expiration <整型>
已恢复的 TLS 会话的过期时间
--gnutls-cache-size <整型>
已恢复的 TLS 会话的数量
Goom效果
--goom-width <整型> Goom显示宽度
--goom-height <整型> Goom显示高度
--goom-speed <整型> Goom动画速度
Growl 通知插件
--growl-server <字符串型>
Growl 服务器
--growl-password <字符串型>
Growl 密码
--growl-port <整型> Growl UDP 端口
H264 视频分离器
--h264-fps <浮点型> 每秒帧数
耳机虚拟空间化效果
--headphone-dim <整型> Characteristic dimension
--headphone-compensate, --no-headphone-compensate
Compensate delay (默认关闭)
--headphone-dolby, --no-headphone-dolby
No decoding of Dolby Surround (默认关闭)
HTTP remote control interface
--http-host <字符串型> 主机地址
--http-src <字符串型> 源目录
--http-charset <字符串型>
字符集
--http-handlers <字符串型>
Handlers
--http-intf-cert <字符串型>
证书文件
--http-intf-key <字符串型>
私钥文件
--http-intf-ca <字符串型>
根 CA 文件
--http-intf-crl <字符串型>
CRL 文件
影像视频输出
--image-out-format {png,jpeg}
影像格式
--image-width <整型> 图像宽度
--image-height <整型> 图像高度
--image-out-ratio <整型> 录制比率
--image-out-prefix <字符串型>
文件名称前缀
--image-out-replace, --no-image-out-replace
总是写到相同的文件 (默认关闭)
文件记录
--logfile <字符串型> 记录文件文件名
--logmode {text,html} 记录格式
--rrd-file <字符串型> RRD 输出文件
Logo 视频过滤器
--logo-file <字符串型> Logo 文件名
--logo-x <整型> X 坐标
--logo-y <整型> Y 坐标
--logo-delay <整型> Logo 每个图像的时间 (毫秒)
--logo-repeat <整型> Logo 循环的动画编号
--logo-transparency <整型>
Logo 的透明度
--logo-position {0 (居中), 1 (左), 2 (右), 4 (顶部), 8 (底部), 5 (左上), 6 (右上), 9 (左下), 10 (右下)}
Logo位置
显示滚动字幕
--marq-marquee <字符串型>
文本
--marq-x <整型> X 偏移量
--marq-y <整型> Y 偏移量
--marq-position <整型> 字幕位置
--marq-opacity <整型> 不透明
--marq-color {-268435456 (默认), 0 (黑色), 8421504 (灰色), 12632256 (银色), 16777215 (白色), 8388608 (栗色), 16711680 (红色), 16711935 (紫红色), 16776960 (黄色), 8421376 (橄榄色), 32768 (绿色), 32896 (蓝绿色), 65280 (柠檬色), 8388736 (紫色), 128 (藏青色), 255 (蓝色), 65535 (浅绿色)}
色彩
--marq-size <整型> 字号
--marq-timeout <整型> 超时
M-JPEG 摄像机分离器
--mjpeg-fps <浮点型> 每秒帧数
Matroska 串流分离器
--mkv-use-ordered-chapters, --no-mkv-use-ordered-chapters
Ordered chapters (默认打开)
--mkv-use-chapter-codec, --no-mkv-use-chapter-codec
章节编码器 (默认打开)
--mkv-preload-local-dir, --no-mkv-preload-local-dir
预读取目录 (默认打开)
--mkv-seek-percent, --no-mkv-seek-percent
Seek based on percent not time (默认关闭)
--mkv-use-dummy, --no-mkv-use-dummy
Dummy Elements (默认关闭)
MOD 分离器 (libmodplug)
--mod-noisereduction, --no-mod-noisereduction
噪声消除 (默认打开)