mirror of
https://github.com/videolan/vlc.git
synced 2024-12-04 15:26:23 +08:00
sout-all now defaults to true
Stop losing extra audio tracks after the first one
This commit is contained in:
parent
9e09db809c
commit
f2f0361f35
2
NEWS
2
NEWS
@ -81,6 +81,8 @@ Streaming:
|
||||
* HLS: Allow setting the first segment number and numerous improvements
|
||||
* new stats module to output block timing values and md5 sums
|
||||
* transcode module access fps values as rationals now, eg 30000/1001
|
||||
* VLC now streams all elementary streams, you can revert to previous behaviour
|
||||
with --no-sout-all
|
||||
|
||||
libVLC:
|
||||
* add equalizer API libvlc_audio_equalizer_* functions
|
||||
|
@ -1905,7 +1905,7 @@ vlc_module_begin ()
|
||||
SOUT_DISPLAY_LONGTEXT, true )
|
||||
add_bool( "sout-keep", false, SOUT_KEEP_TEXT,
|
||||
SOUT_KEEP_LONGTEXT, true )
|
||||
add_bool( "sout-all", 0, SOUT_ALL_TEXT,
|
||||
add_bool( "sout-all", true, SOUT_ALL_TEXT,
|
||||
SOUT_ALL_LONGTEXT, true )
|
||||
add_bool( "sout-audio", 1, SOUT_AUDIO_TEXT,
|
||||
SOUT_AUDIO_LONGTEXT, true )
|
||||
|
Loading…
Reference in New Issue
Block a user