Recherche avancée

Médias (0)

Mot : - Tags -/navigation

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

Autres articles (34)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (5711)

  • Fix more GCC warnings about case fall-through

    6 mai 2018, par Erik de Castro Lopo
    Fix more GCC warnings about case fall-through
    

    Patch-from : lvqcl <lvqcl.mail@gmail.com>

    • [DH] src/libFLAC/lpc_intrin_sse41.c
  • flac/encode.c : Limit padding size

    9 janvier 2016, par Erik de Castro Lopo
    flac/encode.c : Limit padding size
    

    This prevents a too large padding value overflowing the block length.

    Patch-from : lvqcl <lvqcl.mail@gmail.com>
    Closes : https://sourceforge.net/p/flac/bugs/284/

    • [DH] src/flac/encode.c
  • ffmpeg - adding Dynamic logo & random position watermark to video ?

    9 août 2021, par JackS

    I am making a tutorial for sending through mail to my uses, and to avoid piracy distribution I thought to put watermarks (logo.png) at random places at interval on the videos.

    &#xA;

    I tried using the command from ffmpeg - Dynamic letters and random position watermark to video ? :

    &#xA;

    ffmpeg -i input.mp4 \&#xA;-vf \&#xA;"drawtext=fontfile=font.ttf:fontsize=80:fontcolor=yellow@0.5:text=&#x27;studentname&#x27;: \&#xA; x=if(eq(mod(t\,30)\,0)\,rand(0\,(W-tw))\,x): \&#xA; y=if(eq(mod(t\,30)\,0)\,rand(0\,(H-th))\,y)" \&#xA;-c:v libx264 -crf 23 -c:a copy output.mp4&#xA;

    &#xA;

    But it gave me error :

    &#xA;

    [NULL @ 0x55c812525600] Unable to find a suitable output format for &#x27;\&#x27;&#xA;\: Invalid argument&#xA;

    &#xA;