I am using ffmpeg on Ubuntu 22.04 to create 1 second mp4 videos from piped
jpgs. The only issue that I have is that ffmpeg stops executing after the first
set of jpgs is piped in. I need ffmpeg to continuously take in jpgs so that it
can keep creating more mp4s.
This is the command line that got
Carl Zwanzig wrote:
> It sounds like you are really unclear on the differences between shared
> *libraries* and *executable files*
You are absolutely right. I was running under the false assumption that since I
can turn an executable (ffmpeg) into a dll, then the dll must also be
executable.
Carl Zwanzig wrote:
> That's because 'ffmpeg' is an executable, not a library-
I thought that shared object files (.so) were similar to dynamically linked
libraries (.dll) and that they can be used as executables. So if I can get
ffmpeg to be built as a dll, should I not be able to create a .so
___
From: ffmpeg-user on behalf of Reindl Harald
Sent: Tuesday, January 31, 2023 10:26:59 AM
To: ffmpeg-user@ffmpeg.org
Subject: Re: [FFmpeg-user] How to compile static FFmpeg to a .so file?
for the sake of god stop top-posting
Am 31.01.23 um 16:06 schrieb Ricardo Zacarias:
> Adding the '
ald
Sent: Tuesday, January 31, 2023 9:29:49 AM
To: FFmpeg user questions
Subject: Re: [FFmpeg-user] How to compile static FFmpeg to a .so file?
Am 31.01.23 um 15:21 schrieb Ricardo Zacarias:
> Got it. So not static. So if I wanted to have it dynamic, to produce a .so
> file, I would
is not in .so format.
From: ffmpeg-user on behalf of Mark Harfouche
Sent: Tuesday, January 31, 2023 5:27:15 AM
To: FFmpeg user questions
Subject: Re: [FFmpeg-user] How to compile static FFmpeg to a .so file?
On linux. static = .a, dynamic = .so
On Mon, Jan 30, 2023 at 1:22
I am trying to build a static ffmpeg to produce a .so file.
I was able to build FFmpeg into a Windows dll using this configuration.
./configure --extra-ldexeflags='-dll' --target-os=win64 --arch=x86_64
--toolchain=msvc --prefix=/c/ffmpeg/out --enable-static -–disabled-shared
--enable-gpl --enabl