Recherche avancée

Médias (0)

Mot : - Tags -/images

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

Autres articles (36)

  • 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" (...)

  • 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

Sur d’autres sites (6087)

  • libfdk-aacdec : Enable Dynamic Range Control Metadata Support

    14 octobre 2014, par Omer Osman
    libfdk-aacdec : Enable Dynamic Range Control Metadata Support
    

    For streams which contain DRC metadata, the FDK decoder is able to
    control rendering of the decoded output. The rendering parameters
    are detailed in fdk_aac_dec_options [].

    The default behavior is left up to the decoder.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavcodec/libfdk-aacdec.c
    • [DBH] libavcodec/version.h
  • avformat/matroskadec : Simplify control flow of parsing laces

    3 décembre 2019, par Andreas Rheinhardt
    avformat/matroskadec : Simplify control flow of parsing laces
    

    Up until now, when an error happened in one of the inner loops in
    matroska_parse_laces, a variable designated for the return value has
    been set to an error value and break has been used to exit the
    current loop/case. This was done so that the end of matroska_parse_laces
    is reached, because said function allocated memory which is later used
    and freed in the calling function and passed at the end of
    matroska_parse_laces.

    But given that there is no allocation any more, one can now return
    immediately. And this commit does this.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/matroskadec.c
  • problem using ffmpeg drawtext for rtl languge

    9 janvier 2019, par Soroush Tayyebi

    i use this command to write on a video :

    ffmpeg -i source.mp4 -vf drawtext=\"text_shaping=1:fontfile=font.ttf:
       text='یه نوشته فارسی!': fontcolor=black: fontsize=$font_size: box=1: boxcolor=black@0:boxborderw=0: x=(w-text_w)/2: y=(h-text_h)/2 :enable='between(t,5,10)'\"  -c:a copy -force_key_frames 0:05:00,0:6:00 end.mp4

    it work fine when i don’t have numbers and symbols(!, ?,$ and ...) in first and end of my text.
    my lang is right to left and this commmand not support rtl.
    what i must do to solve this problem ?