Monkey 1 Ultimate Talkie Edition (released)
Moderator: ScummVM Team
IANAL, but I don't think there's a problem with redistributing msvcr71.dll - it's a redistributable library. Unfortunately, I don't think there's an easy way to obtain it now, as the redistributable patches that MS provides are for VS2005 (i.e. VC++ 8.0) and 2008 (i.e. VC++ 9.0). Windows 2000 and later versions should include that file by default.
Which tool needs msvcr71.dll?
Which tool needs msvcr71.dll?
- LogicDeLuxe
- Posts: 442
- Joined: Thu Nov 10, 2005 9:54 pm
Apparently, scummpacker.exe is using it. It is a compiled python tool.md5 wrote:Which tool needs msvcr71.dll?
Are you sure that Windows 2000 and later always have this included? In that case, I could easily ditch it, as Windows XP is the minimum requirement for this to work anyway.
That leaves xWMAEncode.exe, which is part of the DirectX SDK, a package some hundreds MB in size.
The problem with this file is explained a bit in a Python thread, e.g.:
http://osdir.com/ml/python.py2exe/2005-05/msg00064.html
In essence, the file's status is dubious. Theoretically, it should be "ok" to distribute it if you own VS 2003. But limiting people from downloading this is silly. It's really easy to obtain newer versions of this DLL (for VC++ 8.0 and newer) from Microsoft, but this version is obsolete now. Googling around, it looks like it's included in .NET 1.1 SDK, but that's a hefty 100MB+ download.
This page gives more insight:
http://osdir.com/ml/python.py2exe/2005-05/msg00064.html
In essence, the file's status is dubious. Theoretically, it should be "ok" to distribute it if you own VS 2003. But limiting people from downloading this is silly. It's really easy to obtain newer versions of this DLL (for VC++ 8.0 and newer) from Microsoft, but this version is obsolete now. Googling around, it looks like it's included in .NET 1.1 SDK, but that's a hefty 100MB+ download.
This page gives more insight:
The MSVCRT.LIB that ships with 32 bit compiler Visual C++ Toolkit 2003 dynamically links to MSVCR71.DLL which is not present in a freshly installed Windows XP system. MSVCR only appears after some software package that needs it such as Adobe Acrobat Reader is installed.
Well, in that case, wouldn't it be possible to compile it into a single static linked binary, without an external dependency on a non-system DLL ?LogicDeLuxe wrote:Apparently, scummpacker.exe is using it. It is a compiled python tool.md5 wrote:Which tool needs msvcr71.dll?
(Rant: I never quite understood why on Windows it seems to be normal for apps to have to install all kinds of DLLs, including one for the "C run time", before you can run them. Shouldn't the CRT part of the OS, not each app? Weird).
Unfortunately, no. This is a Python script, and it is compiled into a Windows binary using py2exe, so this is an issue with Python itself. It would still be possible to ask people to install Python, but I believe that a single DLL file makes things easier...fingolfin wrote:Well, in that case, wouldn't it be possible to compile it into a single static linked binary, without an external dependency on a non-system DLL ?LogicDeLuxe wrote:Apparently, scummpacker.exe is using it. It is a compiled python tool.md5 wrote:Which tool needs msvcr71.dll?
(as for your rant: at least Windows doesn't have the RPM hell that RPM-based distros have)
- LogicDeLuxe
- Posts: 442
- Joined: Thu Nov 10, 2005 9:54 pm
Is it by any chance also included in dotnetfx35.exe? That one comes and is required by MISE, so I could be sure it exists.md5 wrote:it looks like it's included in .NET 1.1 SDK, but that's a hefty 100MB+ download.
Still, xWMAencode is the more inconvenient file. It is included in DXSDK_Jun10.exe which is a ridiculous 571 MB.
It doesn't matter. Please don't change the subject and don't turn this into a never ending *nix vs. Windows thread...bobdevis wrote:You call that DLL-Hell I believe. Hasn't happened to me lately but it used to be really unfunny with some early non backwards-compatible versions of DirectX.md5 wrote: at least Windows doesn't have the RPM hell that RPM-based distros have)
Back to the original subject: I don't think it's a problem to distribute msvcr71.dll. If you aren't comfortable with its distribution, you can provide a link to download the file instead (e.g. the Python binary). But it *should* be safe to include both the DLL and the tool (though, as I said, IANAL).
You only need it to decode WMA files to WAVE, and then later encode the WAVE file to Ogg or flac, right? If so, why not use ffmpeg or some other open source tool for that purpose? Using ffmpeg might even allow you to directly convert from WMA to FLAC/Ogg Vorbis. So you could also replace sox by this.LogicDeLuxe wrote:Still, xWMAencode is the more inconvenient file. It is included in DXSDK_Jun10.exe which is a ridiculous 571 MB.
AFAIK, no open source program supports xWMA.fingolfin wrote:You only need it to decode WMA files to WAVE, and then later encode the WAVE file to Ogg or flac, right? If so, why not use ffmpeg or some other open source tool for that purpose? Using ffmpeg might even allow you to directly convert from WMA to FLAC/Ogg Vorbis. So you could also replace sox by this.LogicDeLuxe wrote:Still, xWMAencode is the more inconvenient file. It is included in DXSDK_Jun10.exe which is a ridiculous 571 MB.
Hm, really? According to the page you linked, "xWMA is a subset of the Windows Media Audio (WMA) Professional compression format." -- and FFmpeg claims to support WMA Professional.
But of course maybe xWMA really is not just a subset. Or maybe the FFmpeg support for WMA Pro is incomplete. It's a bit difficult to find information about the exact support level for WMA in FFmpeg, too :/. I guess only by trying it can we find out.
PS: And also rockbox support WMA Pro, see http://www.rockbox.org/wiki/NewWMAAudioCodecs
But of course maybe xWMA really is not just a subset. Or maybe the FFmpeg support for WMA Pro is incomplete. It's a bit difficult to find information about the exact support level for WMA in FFmpeg, too :/. I guess only by trying it can we find out.
PS: And also rockbox support WMA Pro, see http://www.rockbox.org/wiki/NewWMAAudioCodecs
It also doesn't help that searching for "FFmpeg xWMA" in Google has this forum post on its first page already. But, yes, it would make sense if FFmpeg (or libav, or whatever people want to call it now) did support it already...fingolfin wrote:But of course maybe xWMA really is not just a subset. Or maybe the FFmpeg support for WMA Pro is incomplete. It's a bit difficult to find information about the exact support level for WMA in FFmpeg, too :/. I guess only by trying it can we find out.
Damn, and I fell for it! Ah well, I already have the reputation of having no sense of humor, so this just underlines itclone2727 wrote:Yes, it was my lame attempt at a jokefingolfin wrote:FFmpeg is FFmpeg; libav is a fork.

Back to topic: It would be really interesting to know if ffmpeg can decode these files or not. So if somebody can test it and report the findings, that would be most interesting. By the way, if it is *not* supported, I think the ffmpeg guys might be interested to learn about it, maybe they would even be interested in adding support.