fix event-based recording audio codec "auto" option
parent
91e5ce24fd
commit
a92fdea98a
|
|
@ -716,7 +716,7 @@ module.exports = (s,config,lang) => {
|
|||
}
|
||||
if(audioCodec === 'no'){
|
||||
outputFlags.push(`-an`)
|
||||
}else if(audioCodec){
|
||||
}else if(audioCodec && audioCodec !== 'auto'){
|
||||
outputFlags.push(`-c:a ` + audioCodec)
|
||||
}
|
||||
if(outputFilters.length > 0){
|
||||
|
|
|
|||
Loading…
Reference in New Issue