Recherche avancée

Médias (0)

Mot : - Tags -/masques

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (112)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains 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, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP 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 darclander

    I would like to use ffmpeg for windows and mingw which made me look at :

    


    


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

    


      

    1. Download ffmpeg source files (from here).
    2. 


    3. Open MSYS mingw shell
    4. 


    5. Go to the ffmpeg directory.
    6. 


    7. Run ./configure --disable-shared --enable-static
    8. 


    9. Run make -j4
    10. 


    11. Run make install
    12. 


    


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

    


    #include <iostream>&#xA;&#xA;extern "C" {&#xA;    #include "libavformat/avformat.h"&#xA;    #include "libavcodec/avcodec.h"&#xA;    #include "libswscale/swscale.h"&#xA;}&#xA;&#xA;int main() {&#xA;    avformat_network_init();&#xA;    return 0;&#xA;}&#xA;&#xA;</iostream>

    &#xA;

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

    &#xA;

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

    &#xA;

  • how to use ffmpeg to apply 1:1 SAR before concat on large complex filter

    24 avril 2019, par 2c2c

    I 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 bl4ck5un

    I 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 ?