
Recherche avancée
Autres articles (112)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (14998)
-
Compiling ffmpeg for mingw leads to undefined reference ?
24 juillet 2023, par darclanderI would like to use
ffmpeg
for windows andmingw
which made me look at :

- 

- https://trac.ffmpeg.org/wiki/CompilationGuide/MinGW
- https://dev.to/codesomething/installing-mingw-w64-on-windows-and-fixing-the-weird-file-downloaded-incorrectly-error-4b85






I was successful at using
MSYS
according to the documentation / guides above. I followed these steps :

- 

- Download ffmpeg source files (from here).
- Open
MSYS mingw shell
- Go to the ffmpeg directory.
- Run
./configure --disable-shared --enable-static
- Run
make -j4
- Run
make install














But when I am trying to compile
g++ -o main main.cpp -IC:\ffmpeg\include -LC:\ffmpeg\lib -lavformat
:

#include <iostream>

extern "C" {
 #include "libavformat/avformat.h"
 #include "libavcodec/avcodec.h"
 #include "libswscale/swscale.h"
}

int main() {
 avformat_network_init();
 return 0;
}

</iostream>


I get the following error message :
undefined reference to 'avformat_network_init'
which I assume is me doing something incorrectly when installing the libraries since if I change the-lavformat
to something else I getcannot find -lSOMETHING
. The headers are also "found" since I can use for exampleAVFormatContext* formatContext = NULL;
found inavformat.h
. The lib directory contains :libavcodec.a libavdevice.a libavfilter.a libavformat.a libavutil.a libswresample.a libswscale.a


Am I missing something obvious or where could the issue be ?


-
how to use ffmpeg to apply 1:1 SAR before concat on large complex filter
24 avril 2019, par 2c2cI use ffmpeg to concat videos in a fashion similar to this :
I ran into a weird error with my inputs
[Parsed_concat_0 @ 000000002a05bb80] Input link in10:v0 parameters (size 1280x720, SAR 2049:2048)
do not match the corresponding output link in0:v0 parameters (1280x720, SAR 1:1)From what I’ve researched I need to use setsar to force all the videos to be 1:1 before I concat, but I’m not sure how to do that in my filter.
-
Why ffmpeg-split AVI movie freezes when played
29 septembre 2015, par bl4ck5unI used ffmpeg to split AVI movies like
ffmpeg -i input.avi -vcodec copy -acodec copy -ss 00:22:33 -to 1:2:3 out.avi
But the output file
out.avi
is sometimes weird when played (in MPlayerX, for example) — it will stop at the first frame, freezing like a picture, but if I drag the process bar forward, then continue playing at a different place, everything would be fine and the video just goes on smoothly.I have limited knowledge on AVI format and ffmpeg, can you guys point out what’s the problem here ? If it’s a matter of kerFrame or what ?