0002592: Problems from the update of TagLibPlugin (1 Viewer)

MediaPortal-Bot

Worlds greatest bot!
March 26, 2007
3,715
180
Home Country
Germany Germany
1) There is now a file reference from the MusicMetadataExtractor to the DLL file "..\..\..\..\Bin\MP-II-Client\bin\x86\Debug\Plugins\TagLibPlugin\TagLib.dll". Should be replaced by a reference to the TagLibPlugin itself.


2) Media resource access was broken by this change:


Index: D:/Projekte/Visual C#/MediaPortal/MP-Server/Source/Media/MetadataExtractors/MusicMetadataExtractor/MusicMetadataExtractor.cs
===================================================================
--- D:/Projekte/Visual C#/MediaPortal/MP-Server/Source/Media/MetadataExtractors/MusicMetadataExtractor/MusicMetadataExtractor.cs (revision 24525)
+++ D:/Projekte/Visual C#/MediaPortal/MP-Server/Source/Media/MetadataExtractors/MusicMetadataExtractor/MusicMetadataExtractor.cs (revision 24526)
@@ -204,8 +204,7 @@
File tag;
try
{
- tag = File.Create(new MediaProviderFileAbstraction(mediaItemAccessor),
- Path.GetFileName(humanReadablePath), null, ReadStyle.Fast);
+ tag = File.Create(humanReadablePath);
}
catch (CorruptFileException)
{

The change is invalid and must be reverted. If the new TagLibPlugin doesn't support the file access via that file abstraction any more, it needs to be added.

http://mantis.team-mediaportal.com/view.php?id=2592

Open the issue in Mantis...
 

Users who are viewing this thread

Top Bottom