This commit is contained in:
Quentin 2026-05-05 21:41:16 -04:00 committed by GitHub
commit 0e2b1080a7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 18 additions and 5 deletions

View file

@ -17,6 +17,7 @@ class MediaProbeData {
this.channelLayout = null
this.channels = null
this.sampleRate = null
this.profile = null
this.chapters = []
this.audioMetaTags = null
@ -58,6 +59,7 @@ class MediaProbeData {
this.channelLayout = this.audioStream.channel_layout
this.channels = this.audioStream.channels
this.sampleRate = this.audioStream.sample_rate
this.profile = this.audioStream.profile
this.chapters = data.chapters || []
this.audioMetaTags = new AudioMetaTags()