Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (111)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

  • 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 (9302)

  • Howto merge two avi files using ffmpeg ?

    19 mai 2021, par teslasimus

    I'm unable to merge two avi videos together. 
google is full of below examples :

    



    cat file1.avi file2.avi file3.avi > video_draft.avi
after appending the data together using cat above, you need to re-index the draft movie like this:

mencoder video_draft.avi -o video_final.avi -forceidx -ovc copy -oac copy
Now you're video_final.avi file will be right to go.


    



    but it doesn't work for me, the first video is converted and that's it.

    


  • Howto merge two avi files using ffmpeg ?

    24 juillet 2014, par teslasimus

    I’m unable to merge two avi videos together.
    google is full of below examples :

    cat file1.avi file2.avi file3.avi > video_draft.avi
    after appending the data together using cat above, you need to re-index the draft movie like this:

    mencoder video_draft.avi -o video_final.avi -forceidx -ovc copy -oac copy
    Now you're video_final.avi file will be right to go.

    but it doesn’t work for me, the first video is converted and that’s it.

  • avfilter/vf_format : re-use AVFilterFormats for pix_fmt parsing

    21 octobre 2023, par Niklas Haas
    avfilter/vf_format : re-use AVFilterFormats for pix_fmt parsing
    

    Rewrite the format parsing code to make it more easily generalizable. In
    particular, `invert_formats` does not depend on the type of format list
    passed to it, which allows me to re-use this helper in an upcoming
    commit.

    Slightly shortens the code, at the sole cost of doing several malloc
    (ff_add_format) instead of a single malloc.

    • [DH] libavfilter/vf_format.c