From owner-freebsd-questions@FreeBSD.ORG Sat Sep 6 22:05:01 2014 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 294E6C0E for ; Sat, 6 Sep 2014 22:05:01 +0000 (UTC) Received: from plane.gmane.org (plane.gmane.org [80.91.229.3]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D76131BB4 for ; Sat, 6 Sep 2014 22:04:59 +0000 (UTC) Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1XQO6E-0000it-OO for freebsd-questions@freebsd.org; Sun, 07 Sep 2014 00:04:50 +0200 Received: from pool-173-79-82-127.washdc.fios.verizon.net ([173.79.82.127]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 07 Sep 2014 00:04:50 +0200 Received: from nightrecon by pool-173-79-82-127.washdc.fios.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 07 Sep 2014 00:04:50 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Michael Powell Subject: Re: missing lipmp3lame with openshot Date: Sat, 06 Sep 2014 18:04:37 -0400 Lines: 36 Message-ID: References: <540B5779.9020706@dreamchaser.org> Reply-To: nightrecon@hotmail.com Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: pool-173-79-82-127.washdc.fios.verizon.net X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Sep 2014 22:05:01 -0000 Gary Aitken wrote: > I'm trying out openshot to learn something about video editing. > When I go to export, it claims: > "The following codec(s) are missing from your system: > libmp3lame" > > The openshot executable is statically linked, and there is a libmp3lame.a > in /usr/local/lib, as a result of installing multimedia/gstreamer-ffmpeg, > I think. > > Anyhoo, it's not clear to me exactly what the problem is, or how to go > about > finding out. I presume it is trying to dynamically load the library, or > trapping an unresolved reference. I'm pretty rusty on ar and ld, so any > hints would be appreciated. > > Gary Note the dependency for lame-3.99.5_1 in the list below: http://www.freebsd.org/cgi/ports.cgi?query=openshot&stype=all&sektion=all Below shows some pertinent info: http://svnweb.freebsd.org/ports/head/audio/lame/pkg-plist?revision=354227&view=markup Looks like you need to install lame: http://www.freebsd.org/cgi/ports.cgi?query=^lame-3.99.5_1&stype=name You can also look at the binary by cd /path/to and ldd whateverbinary. This will tell you what libs it was built against. -Mike