mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-23 23:20:51 +01:00
Added SampleRate metadata parsing
This commit is contained in:
parent
0ff432ea4e
commit
bbbe6164dc
1 changed files with 4 additions and 0 deletions
|
|
@ -355,6 +355,10 @@ namespace MediaBrowser.Controller.Xml
|
|||
stream.IsDefault = reader.ReadElementContentAsString() == "True";
|
||||
break;
|
||||
|
||||
case "SamplingRate":
|
||||
stream.SampleRate = reader.ReadIntSafe();
|
||||
break;
|
||||
|
||||
case "BitRate":
|
||||
stream.BitRate = reader.ReadIntSafe();
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue