Sorry, I didn't notice your post about AMR before my last one. Thanks for your time explaining and answering questions.
Rich
Search found 11 matches
- Fri Dec 26, 2008 8:18 am
- Forum: Mac OS X
- Topic: Building with FFMPEG - LIBSNDFILE not available
- Replies: 20
- Views: 7535
- Thu Dec 25, 2008 9:55 pm
- Forum: Mac OS X
- Topic: Building with FFMPEG - LIBSNDFILE not available
- Replies: 20
- Views: 7535
Re: Building with FFMPEG - LIBSNDFILE not available
Checking the FFmpeg libs using nm shows no references to libfaac_encoder or libfaad_decoder. So you are correct that the FFmpeg Libraries for Audacity.pkg were made without Faac and Faad. I did try putting faac and faad libraries into /usr/local/lib/audacity with no effect. However what did work was...
- Wed Dec 24, 2008 8:40 am
- Forum: Mac OS X
- Topic: Building with FFMPEG - LIBSNDFILE not available
- Replies: 20
- Views: 7535
Re: Building with FFMPEG - LIBSNDFILE not available
I don't believe it is getting the incorrect lib. In this case, since I downloaded the Audacity executable, I am launching it from the Applications directory and not executing it in a shell. I don't think environment variables can be set for the Launcher. When going into Preferences>"Import / Export"...
- Wed Dec 24, 2008 12:34 am
- Forum: Mac OS X
- Topic: Building with FFMPEG - LIBSNDFILE not available
- Replies: 20
- Views: 7535
Re: Building with FFMPEG - LIBSNDFILE not available
I guess I should have been more specific regarding FFmeg. I want to export using the FFmpeg aac format. I downloaded the latest nightly build and installed the FFmpeg binary. Audacity now gives me the option to Export using "M4A (AAC) Files (FFmpeg)", but this results in the following error: "FFmpeg...
- Mon Dec 22, 2008 9:57 am
- Forum: Mac OS X
- Topic: Building with FFMPEG - LIBSNDFILE not available
- Replies: 20
- Views: 7535
Re: Building with FFMPEG - LIBSNDFILE not available
Thanks for the info about aclocal Gale. I'm unfamiliar building in Xcode and I wanted to build Audacity with FFMpeg. This is why I was attempting to do so via the command line. However, I did give building in Xcode a shot. I used the latest beta source for audacity (cvs -d:pserver:[email protected]...
- Sun Dec 21, 2008 12:34 am
- Forum: Mac OS X
- Topic: Building with FFMPEG - LIBSNDFILE not available
- Replies: 20
- Views: 7535
Re: Building with FFMPEG - LIBSNDFILE not available
Figured I'd download the latest version of audacity from CVS and try that. After doing so, and fixing the broken libsamplerate included in lib-src (replaced it with download from http://www.mega-nerd.com/SRC/libsamplerate-0.1.4.tar.gz). I then ran into a problem building sbms: make[2]: Entering dire...
- Thu Dec 18, 2008 10:10 am
- Forum: Mac OS X
- Topic: Building with FFMPEG - LIBSNDFILE not available
- Replies: 20
- Views: 7535
Re: Building with FFMPEG - LIBSNDFILE not available
Did a little more digging. I found the C99/C++ comment with the following defines in ffmpeg.h (line 32): #if defined(USE_FFMPEG) extern "C" { #ifdef _STDINT_H /* stdint.h has already been included. That's likely to break ffmpeg headers * as described above so we issue a warning */ #warning "stdint.h...
- Thu Dec 18, 2008 3:37 am
- Forum: Mac OS X
- Topic: Building with FFMPEG - LIBSNDFILE not available
- Replies: 20
- Views: 7535
Re: Building with FFMPEG - LIBSNDFILE not available
Actually I didn't use the latest CVS source. I just downloaded the "Recommended download" version 1.3.6 tarball from http://audacityteam.org/download/beta_source Running 'make dep' and then make after configuring with the CXXFLAGS options made no difference. I still get the INT64_C error compiling I...
- Tue Dec 16, 2008 10:40 pm
- Forum: Mac OS X
- Topic: Building with FFMPEG - LIBSNDFILE not available
- Replies: 20
- Views: 7535
Re: Building with FFMPEG - LIBSNDFILE not available
Thanks for the mad.pc tip Josh. That worked. I did install pkg-config before everything else and I do have /usr/local/bin in my $PATH before any other system directories, but without the PKG_CONFIG_PATH environment var, configure doesn't see LIBSNDFILE. Not sure why. I did check the config.log. That...
- Sat Dec 13, 2008 12:54 am
- Forum: Mac OS X
- Topic: Building with FFMPEG - LIBSNDFILE not available
- Replies: 20
- Views: 7535
Re: Building with FFMPEG - LIBSNDFILE not available
I finally figured out what I needed to do to fix this. I created a PKG_CONFIG_PATH environment variable and set it to /usr/local/lib/pkgconfig The configure got further, but then indicated that expat was required. I installed expat-2.0.1 along with libmad-0.15.1b and libid3tag-0.15.1b and it finally...