Skip to content

Commit

Permalink
replace resolution separator character (#384)
Browse files Browse the repository at this point in the history
  • Loading branch information
United600 authored Jun 10, 2024
1 parent a2eaae2 commit 14fb544
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Screenbox.Core/ViewModels/PropertyViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public void UpdateProperties(MediaViewModel media)
MediaProperties[_resourceService.GetString(ResourceName.PropertyWriters)] = string.Join("; ", media.MediaInfo.VideoProperties.Writers);
MediaProperties[_resourceService.GetString(ResourceName.PropertyLength)] = Humanizer.ToDuration(media.MediaInfo.VideoProperties.Duration);

VideoProperties[_resourceService.GetString(ResourceName.PropertyResolution)] = $"{media.MediaInfo.VideoProperties.Width}x{media.MediaInfo.VideoProperties.Height}";
VideoProperties[_resourceService.GetString(ResourceName.PropertyResolution)] = $"{media.MediaInfo.VideoProperties.Width}×{media.MediaInfo.VideoProperties.Height}";
VideoProperties[_resourceService.GetString(ResourceName.PropertyBitRate)] = $"{media.MediaInfo.VideoProperties.Bitrate / 1000} kbps";

AudioProperties[_resourceService.GetString(ResourceName.PropertyBitRate)] = $"{media.MediaInfo.MusicProperties.Bitrate / 1000} kbps";
Expand Down

0 comments on commit 14fb544

Please sign in to comment.