Fix bug with library scanning introduced in #697

Looks like #697 missed a reference update that caused scanning libraries
to fail. This fixes that
This commit is contained in:
jmt-gh 2022-06-08 19:15:35 -07:00
parent 2079942ccd
commit 701b8ea12e

View File

@ -88,8 +88,8 @@ function parseMediaStreamInfo(stream, all_streams, total_bit_rate) {
codec_time_base: stream.codec_time_base || null,
time_base: stream.time_base || null,
bit_rate: tryGrabBitRate(stream, all_streams, total_bit_rate),
language: tryGrabTag(stream, 'language'),
title: tryGrabTag(stream, 'title')
language: tryGrabTags(stream, 'language'),
title: tryGrabTags(stream, 'title')
}
if (stream.tags) info.tags = stream.tags