Recherche avancée

Médias (91)

Autres articles (103)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (6894)

  • running the first Qt + ffmpeg profram : undefined reference av_register_all [duplicate]

    20 avril 2016, par Julia

    This question already has an answer here :

    I am trying to include ffmpeg in my qt project on windows (I use QT Creator).
    I wrote a small program.

    #include <iostream>

    #ifdef __cplusplus
    extern "C" {
    #endif
    #include <libavcodec></libavcodec>avcodec.h>
    #include <libavformat></libavformat>avformat.h>
    #include <libswscale></libswscale>swscale.h>
    #ifdef __cplusplus
    }
    #endif

    using namespace std;

    int main(int argc, char *argv[])
    {

       av_register_all();

       return 0;
    }
    </iostream>

    And here is the problem

    undefined reference av_register_all

    Please help me to fix it.

  • FFMPEG combining MP4 videos with same encoding not working, only showing first video

    13 avril 2020, par Ayudh

    My mp4 videos have the same encoding : h264

    &#xA;&#xA;

    I know because I ran this command on them :

    &#xA;&#xA;

    ffprobe -v error -select_streams v:0 -show_entries stream=codec_name -of default=noprint_wrappers=1:nokey=1 a.mp4

    &#xA;&#xA;

    Now I combine them using the following command :

    &#xA;&#xA;

    ffmpeg -loglevel quiet -f concat -safe 0 -i video-list.txt -c copy video-final.mp4

    &#xA;&#xA;

    my video-list.txt file looks like this :

    &#xA;&#xA;

    file &#x27;a.mp4&#x27;&#xA;file &#x27;b.mp4&#x27;&#xA;file &#x27;c.mp4&#x27;&#xA;

    &#xA;&#xA;

    Now the video-final.mp4 which is the combined video actually has duration which is equal to the sum of its' component videos and also is quite larger in size. The issue is that when I play the video, it only plays the first video then stops.

    &#xA;&#xA;

    What's going on here ? Any insight would be appreciated.

    &#xA;&#xA;

    I've looked at : ffmpeg : Combine/merge multiple mp4 videos not working, output only contains the first video and the answers suggested there are the ones I'm using : specifically, concating from a text file containing the component videos.

    &#xA;

  • ffmpeg not finding my images when trying to create a video from images

    18 juin 2020, par Antsushi

    I have found similar questions on Stackoverflow but none of the answers seem to be working for me. I have images that are named like that :

    &#xA;&#xA;

    MP_002_0000.tif&#xA;MP_002_0001.tif&#xA;MP_002_0002.tif&#xA;...&#xA;MP_002_0650.tif&#xA;

    &#xA;&#xA;

    I try to create a video by typing the following code into cmd and powershell :

    &#xA;&#xA;

    ffmpeg -framerate 24 -i MP_002_%650d.tif output.mp4&#xA;

    &#xA;&#xA;

    But it returns an error that says

    &#xA;&#xA;

    Could find no file with path &#x27;MP_002_%650d.tif&#x27; and index in the range 0-4&#xA;MP_002_%650d.tif: No such file or directory&#xA;

    &#xA;&#xA;

    I then tried the following and I am getting the same error (some of them are probably very silly) :

    &#xA;&#xA;

    ffmpeg -framerate 24 -i MP_002_%50d.tif output.mp4&#xA;ffmpeg -framerate 24 -i MP_002_%%50d.tif output.mp4&#xA;ffmpeg -start_number 0000 -framerate 24 -i MP_002_%%0650d.tif output.mp4&#xA;ffmpeg -start_number 0001 -framerate 24 -i MP_002_%%0650d.tif output.mp4&#xA;

    &#xA;&#xA;

    All the images are named in a sequential order and if I try to create a video from only the first 20 images I get the same error. I really am at loss here.

    &#xA;