Reply to thread

Hi! The tag.exe can be used not only for FLAC, Ogg Vorbis and APE format files, but also for MusePack files. Therefore, adding support for MusePack files is a matter of changing the SupportsFile function to:


[code]    public override bool SupportsFile(string strFileName)   

    {

      if (System.IO.Path.GetExtension(strFileName).ToLower()==".ogg" ||        

          System.IO.Path.GetExtension(strFileName).ToLower()==".flac" ||       

          System.IO.Path.GetExtension(strFileName).ToLower()==".mpc" ||      

          System.IO.Path.GetExtension(strFileName).ToLower()==".ape")        

        return true;     

      return false;   

    }[/code]


Also it would be nice if the .mpc extension could be added to the hardcoded list of supported music extensions. I know you can't play it on WMP9 without first installing a DirectShow filter, but that's true for Ogg, Flac and Ape as well.


Top Bottom