diff options
| author | Richard Webster <16655270+rwebster85@users.noreply.github.com> | 2026-07-23 10:13:04 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-07-23 10:13:04 +0100 |
| commit | 3d4c52092e9d78efab2f55ffe4da4d081a86c6aa (patch) | |
| tree | 8f64bdc22683c63543ed82298623789e657ec8ec /MediaBrowser.MediaEncoding | |
| parent | 474ae50c367959baa3e15f18b894fd8a2872c634 (diff) | |
Clarify comment about MP4 track title workaround
Diffstat (limited to 'MediaBrowser.MediaEncoding')
| -rw-r--r-- | MediaBrowser.MediaEncoding/Probing/ProbeResultNormalizer.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.MediaEncoding/Probing/ProbeResultNormalizer.cs b/MediaBrowser.MediaEncoding/Probing/ProbeResultNormalizer.cs index 8c5b0e610e..5f0c76c1b7 100644 --- a/MediaBrowser.MediaEncoding/Probing/ProbeResultNormalizer.cs +++ b/MediaBrowser.MediaEncoding/Probing/ProbeResultNormalizer.cs @@ -757,7 +757,7 @@ namespace MediaBrowser.MediaEncoding.Probing if (string.IsNullOrEmpty(stream.Title)) { - // mp4 missing track title workaround: some muxers store the track title in a "name" tag + // mp4 missing track title workaround: FFprobe exposes MP4 track names via the name tag rather than title stream.Title = GetDictionaryValue(streamInfo.Tags, "name"); if (string.IsNullOrEmpty(stream.Title)) @@ -787,7 +787,7 @@ namespace MediaBrowser.MediaEncoding.Probing if (string.IsNullOrEmpty(stream.Title)) { - // mp4 missing track title workaround: some muxers store the track title in a "name" tag + // mp4 missing track title workaround: FFprobe exposes MP4 track names via the name tag rather than title stream.Title = GetDictionaryValue(streamInfo.Tags, "name"); if (string.IsNullOrEmpty(stream.Title)) |
