Re: [FFmpeg-user] source for audio filter sofalizer

2019-02-25 Thread Danny Mitchell
Have a look at

https://github.com/sofacoustics/

which has links to C++, MatLab/Octave, and other API sources.

I haven't tried any of them yet, though.


https://www.avast.com/sig-email?utm_medium=email_source=link_campaign=sig-email_content=webmail;
target="_blank">https://ipmcdn.avast.com/images/icons/icon-envelope-tick-round-orange-animated-no-repeat-v1.gif;
alt="" width="46" height="29" style="width: 46px; height: 29px;"
/>
Virus-free. https://www.avast.com/sig-email?utm_medium=email_source=link_campaign=sig-email_content=webmail;
target="_blank" style="color: #4453ea;">www.avast.com




On 26/02/2019, Bernd Butscheidt  wrote:
> Hello,
>
>
> I would like to try out this filter:
>
> https://ffmpeg.org/ffmpeg-filters.html#sofalizer
>
> But the website linked to ( http://www.sofacoustics.org/ ) which should
> provide the sofa-files needed seems to be down? I only get a
>
>
>
> Forbidden
>
> You don't have permission to access / on this server.
> Apache/2.4.29 (Ubuntu) Server at www.sofacoustics.org Port 80
>
>
>
> Are there recommended alternative resources or does the documentation needs
> an update?
>
> Kind regards
> Bernd B.
> ___
> ffmpeg-user mailing list
> ffmpeg-user@ffmpeg.org
> https://ffmpeg.org/mailman/listinfo/ffmpeg-user
>
> To unsubscribe, visit link above, or email
> ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".


-- 
-
Wocky   | A poem for the lonely: hello.
fishcust...@gmail.com   | -- Spike Milligan
-
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] How can I see what version of a library is linked? (e.g. libmp3lame)

2018-06-12 Thread Danny Mitchell
On 12/06/2018, Zak  wrote:
> Dear FFmpeg User Mailing List,
>
> The versions of certain libraries are printed in the banner, such as
> libavcodec.
>
> I am curious how to find information about linked libraries, such as
> libmp3lame, the LAME MP3 encoder. I would like to know:
>
> 1. Was it statically or dynamically linked?
>
> 2. If dynamically linked, where is the libmp3lame.so file?
>
> (I think the answer is /usr/local/libmp3lame.dylib in my case on my Mac,
> but I want FFmpeg to tell me. I am not on Kubuntu right now, but I can
> probably find it on Kubuntu also, and I'm guessing it is an .so and not
> a .dylib file on that OS.)
>
> 3. What is the version of the linked library? Here is how I can ask LAME
> itself, from the LAME CLI front-end for libmp3lame:
>
> bash$ lame --version
>
> LAME 64bits version 3.100 (http://lame.sf.net)
>
> -
>
> Here is my best guess:
>
> bash$ ffmpeg -h encoder=libmp3lame
>
> Encoder libmp3lame [libmp3lame MP3 (MPEG audio layer 3)]:
>  General capabilities: delay small
>  Threading capabilities: none
>  Supported sample rates: 44100 48000 32000 22050 24000 16000 11025
> 12000 8000
>  Supported sample formats: s32p fltp s16p
>  Supported channel layouts: mono stereo
> libmp3lame encoder AVOptions:
>-reservoir E...A... use bit reservoir (default true)
>-joint_stereo  E...A... use joint stereo (default true)
>-abr   E...A... use ABR (default false)
>
> This looks promising, but it turns out all of that information is
> hardcoded in this file:
>
> ffmpeg/libavcodec/libmp3lame.c
>
> You can even change this string:
>
> AVCodec ff_libmp3lame_encoder = {
>// ...snip...
>.long_name = "libmp3lame MP3 (MPEG audio layer 3)"
>
> ...and the FFmpeg help will display whatever you type. It is not pulling
> it from the library.
>
> This is intended to be a general question, so I am not going to include
> a specific FFmpeg banner because I use FFmpeg on two operating systems
> (MacOS 10.12 and Kubuntu) and I have multiple versions of FFmpeg.
>
> Thank you,
>
> Zak F.
> ___
> ffmpeg-user mailing list
> ffmpeg-user@ffmpeg.org
> http://ffmpeg.org/mailman/listinfo/ffmpeg-user
>
> To unsubscribe, visit link above, or email
> ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".



If you're on a Unix-like system (including MacOS and *Ubuntu) use
ldd 
where  is the path to the executable you want to examine. Example:

$ ldd /usr/local/bin/ffmpeg
linux-vdso.so.1 =>  (0x7fff279ff000)
libavdevice.so.55 => /usr/local/lib/libavdevice.so.55
(0x2ac9b97e7000)
libavfilter.so.4 => /usr/local/lib/libavfilter.so.4 (0x2ac9b99fe000)
libavformat.so.55 => /usr/local/lib/libavformat.so.55
(0x2ac9b9cdf000)
libavcodec.so.55 => /usr/local/lib/libavcodec.so.55 (0x2ac9ba085000)
libswresample.so.0 => /usr/local/lib/libswresample.so.0
(0x2ac9bb1f)
libswscale.so.2 => /usr/local/lib/libswscale.so.2 (0x2ac9bb407000)
libavutil.so.52 => /usr/local/lib/libavutil.so.52 (0x2ac9bb67d000)
libX11.so.6 => /usr/lib/libX11.so.6 (0x2ac9bb8d3000)
libpthread.so.0 => /lib/libpthread.so.0 (0x2ac9bbcb1000)
libm.so.6 => /lib/libm.so.6 (0x2ac9bbecd000)
libvdpau.so.1 => /usr/lib/libvdpau.so.1 (0x2ac9bc15)
libc.so.6 => /lib/libc.so.6 (0x2ac9bc351000)
libXv.so.1 => /usr/lib/libXv.so.1 (0x2ac9bc6b3000)
libXext.so.6 => /usr/lib/libXext.so.6 (0x2ac9bc8b9000)
libjack.so.0 => /usr/lib/libjack.so.0 (0x2ac9bcacb000)
libasound.so.2 => /usr/lib/libasound.so.2 (0x2ac9bcd0e000)
libSDL-1.2.so.0 => /usr/lib/libSDL-1.2.so.0 (0x2ac9bcff4000)
libdc1394.so.22 => /usr/lib/libdc1394.so.22 (0x2ac9bd2ad000)
libssl.so.0.9.8 => /usr/lib/libssl.so.0.9.8 (0x2ac9bd522000)
libcrypto.so.0.9.8 => /usr/lib/libcrypto.so.0.9.8 (0x2ac9bd778000)
libbz2.so.1.0 => /lib/libbz2.so.1.0 (0x2ac9bdb19000)
libz.so.1 => /usr/lib/libz.so.1 (0x2ac9bdd29000)
libva.so.1 => /usr/lib/libva.so.1 (0x2ac9bdf4)
libvorbisenc.so.2 => /usr/lib/libvorbisenc.so.2 (0x2ac9be146000)
libvorbis.so.0 => /usr/lib/libvorbis.so.0 (0x2ac9be416000)
libtheoraenc.so.1 => /usr/lib/libtheoraenc.so.1 (0x2ac9be447000)
libtheoradec.so.1 => /usr/lib/libtheoradec.so.1 (0x2ac9be686000)
libspeex.so.1 => /usr/lib/libspeex.so.1 (0x2ac9be89f000)
libschroedinger-1.0.so.0 => /usr/lib/libschroedinger-1.0.so.0
(0x2ac9beab9000)
libopenjpeg.so.2 => /usr/lib/libopenjpeg.so.2 (0x2ac9bed63000)
libgsm.so.1 => /usr/lib/libgsm.so.1 (0x2ac9bef83000)
librt.so.1 => /lib/librt.so.1 (0x2ac9bf191000)
libxcb.so.1 => /usr/lib/libxcb.so.1 (0x2ac9bf399000)
libdl.so.2 => /lib/libdl.so.2 

[FFmpeg-user] Header files not found in libavformat/tls_securetransport.c

2015-06-16 Thread Danny Mitchell
This may be an mplayer problem, but it stops ffmpeg from compiling, so
I'll ask here first.

I've downloaded the latest source release of ffmpeg (2.7) and the
snapshot linked at ffmpeg.org/download.html, and the latest mplayer
snapshot from mplayerhq.hu. If I follow the instructions at
trac.ffmpeg.org//wiki/CompilationGuide/Ubuntu I can build ffmpeg
cleanly, and it seems to work - at least its done everything I've
asked it to.

I've also tried to build mplayer, which uses ffmpeg. mplayer won't use
an already-compiled ffmpeg, but uses its own configuration invocation,
and requires a fresh ffmpeg source tree located in .../mplayer/ffmpeg.
Compilation of ffmpeg stops when the preprocessor sees the lines
#include Security/Security.h
#include Security/SecureTransport.h
#include CoreFoundation/CoreFoundation.h

at the top of libavformat/tls_securetransport.c and can't find the
files. I also can't find them on my (debian squeeze) system. An
internet search suggests that these files are Apple iOS/MacOSX headers
for Apple-specific apps - the CoreFoundation one seems to be from
Apple's Core Foundation library, an Apple-supplied mostly-open-source,
partly cross-platform API. I can't find anything in the ffmpeg
documentation regarding these three files. Surrounding them with
#ifdef/#endif's doesn't work because some identifiers are defined in
them. I've tried explicitly disabling tls and GNUtls, but ld borks
with 'undeclared identifier' errors on tls- and ssl- functions. Last
time I built ffmpeg and mplayer (July 2014) it built cleanly on the
same system, so these are relatively recent additions.

Clearly I need to install something else. What?
Why isn't there anything in the documentation or compilation
instructions regarding these prerequesites? (Or is there, and I've
just not seen it?)

I can post complete configure and/or make logs, if it'll help.

Thanks
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user