blackhole failed ffprobe parsing

fix-non-showing-inputs
Moe Alam 2020-10-26 10:00:32 -07:00
parent d3f057de61
commit 12f070d237
1 changed files with 13 additions and 9 deletions

View File

@ -46,6 +46,7 @@ module.exports = (s,config,lang) => {
}
const streams = probeResult.streams || []
streams.forEach((stream) => {
try{
const codecType = stream.codec_type || 'video'
const simpleInfo = {
fps: eval(stream.r_frame_rate) || '',
@ -56,6 +57,9 @@ module.exports = (s,config,lang) => {
}
streamIndex.all.push(simpleInfo)
streamIndex[codecType].push(simpleInfo)
}catch(err){
console.log(err)
}
})
if(streamIndex.video.length === 0){
streamIndex.video.push({