Recherche avancée

Médias (91)

Autres articles (49)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • vf_pp : use new API to access qp table

    14 mars 2013, par Michael Niedermayer

    vf_pp : use new API to access qp table

  • Revision b957439c87 : Fix a potential invalid memory access in non-RD coding flow This commit fixes a

    11 juillet 2014, par Jingning Han

    Changed Paths :
     Modify /test/cpu_speed_test.cc


     Modify /vp9/encoder/vp9_pickmode.c


     Modify /vp9/encoder/vp9_speed_features.c



    Fix a potential invalid memory access in non-RD coding flow

    This commit fixes a potential out-of-boundary memory access due to
    the use of reuse_inter_pred_sby in the non-RD coding flow. It
    resolves the corresponding asan error.

    Change-Id : Iff605f5921230966990013541cd855d698810922

  • Cannot access the files in the subdirectories [FFmpeg]

    9 décembre 2019, par Ahmet Mehmet

    I try to do a loop job in bash. For example, I want to know some video files’ media info with using ffmpeg using in a loop :

    for i in * */* */*/*; do
       ffmpeg -i "$i" -hide_banner
    done

    But if I want to access up to 10 subdirectories, I must use */ symbol 10 times and this is so bad. Have can do this operation more pratic and pro way :) ?

    I tried oguz ismail’s solution and it’s worked, thanks for that. But I have an another problem : This time I tried to take an input file to an output file like this :

    find . -c:v copy -c:a copy -i {} \;

    But I got an error something like "At least one output file must be specified", because I couldn’t specify an output. How can I do that ?