本文介绍了[UWP] [RS5:1809] UWP - GetMusicPropertiesAsync返回截断的OGG标记。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好,

由于我已将Windows更新到上一版本1809,因此函数GetMusicPropertiesAsync()会为每个标记返回截断值(25或26个字符):title ,艺术家,专辑,流派等......

Since I've updated my Windows to last version 1809, the function GetMusicPropertiesAsync() returns truncate value (25 or 26 chars) for each tag : title, artist, album, genre, etc...

带标题和专辑的FLAC文件示例= abcdefghijklmnopqrstuvwxyz123456789( 使用Mp3Tag软件验证 )。

Example with a FLAC File with Title and Album = abcdefghijklmnopqrstuvwxyz123456789 (verified with Mp3Tag software).

在我的UWP应用程序中,标题和Album = abcdefghijklmnopqrstuvwxyz

In my UWP application, Title and Album = abcdefghijklmnopqrstuvwxyz

var properties = await _storageFile.Properties.GetMusicPropertiesAsync();
track.Title = properties.Title;
track.Album = properties.Album;

此新更新有问题吗?

Groove,Windows Media Player和FileExplorer似乎也显示截断的标签。

Groove, Windows Media player and FileExplorer seems to displays truncated tags too.

谢谢

推荐答案

这对于FLAC格式文件是否可以重现,其他任何类型都会出现此问题吗?

Is this just reproducible for you with FLAC format files, do any other types exhibit this issue?

Dave


这篇关于[UWP] [RS5:1809] UWP - GetMusicPropertiesAsync返回截断的OGG标记。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 04:34