Re: [Audacity-devel] FFmpeg on Windows
A free multi-track audio editor and recorder
Brought to you by:
aosiniao
|
From: LRN <lr...@gm...> - 2008-06-15 11:13:47
|
Gale Andrews wrote:
> Now rebuilt (thanks Vaughan) but although I have FFmpeg
> enabled in win/configwin.h, I don't now get the
> "FFmpeg-supported" mask when importing, and when
> I click the new "Find Library" button for FFmpeg in Preferences
> it confirms that FFmpeg support is not compiled in. Has
> something changed?
>
That's strange. Because it clearly states that
wxString GetFFmpegVersion(wxWindow *parent, bool prompt)
{
#if !defined(USE_FFMPEG)
return _("FFmpeg support not compiled in");
#else
...
#endif
}
So, the only way to get that message is when you don't have USE_FFMPEG
defined.
|