update audio transcoding bitrate

This commit is contained in:
Luke Pulverenti
2015-04-25 23:25:07 -04:00
parent 25cdbf014e
commit a7b32d4ec0
29 changed files with 130 additions and 256 deletions

View File

@@ -325,18 +325,6 @@ namespace MediaBrowser.Server.Implementations.Dto
AttachBasicFields(dto, item, owner, options);
if (fields.Contains(ItemFields.SoundtrackIds))
{
var hasSoundtracks = item as IHasSoundtracks;
if (hasSoundtracks != null)
{
dto.SoundtrackIds = hasSoundtracks.SoundtrackIds
.Select(i => i.ToString("N"))
.ToArray();
}
}
var playlist = item as Playlist;
if (playlist != null)
{