Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (100)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Que fait exactement ce script ?

    18 janvier 2011, par

    Ce script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
    Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
    Installation de dépendances de MediaSPIP
    Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
    Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)

Sur d’autres sites (10494)

  • Révision 21476 : complement a r21475 : ce n’est pas la meme autorisation pour modifier le login e...

    2 août 2014, par cedric -

    + si on a pas le droit d’editer l’auteur, le formulaire ne doit pas etre editable

  • ffprobe : show best_effort_timestamp in the frame section

    28 novembre 2013, par wm4
    ffprobe : show best_effort_timestamp in the frame section
    

    This is useful for debugging.

    Reference and ffprobe.xsd changes done and tested by Stefano Sabatini.

    Signed-off-by : Stefano Sabatini <stefasab@gmail.com>

    • [DH] doc/ffprobe.xsd
    • [DH] ffprobe.c
    • [DH] tests/ref/fate/ffprobe_compact
    • [DH] tests/ref/fate/ffprobe_csv
    • [DH] tests/ref/fate/ffprobe_default
    • [DH] tests/ref/fate/ffprobe_flat
    • [DH] tests/ref/fate/ffprobe_ini
    • [DH] tests/ref/fate/ffprobe_json
    • [DH] tests/ref/fate/ffprobe_xml
  • ffmpeg adjust contrast, show histogram

    10 juin 2018, par UltrasoundJelly

    I’m trying to first adjust the contrast of a frame extracted from an mp4, then overlay the histogram of the resultant frame on top. My command here does all of this, but also adjusts the contrast of the histogram itself. Is there a single ffmpeg command that can do what I wish ?

    enter image description here

       ffmpeg -ss 3.5 -i in.mp4 -an -y -vf \
       "split=2[a][b],[b]eq=0.5:0:1:1:1:1:1,histogram=levels_mode=logarithmic:\
       components=1:level_height=100, [a]overlay,eq=0.5:0:1:1:1:1:1" \
       -vframes 1 -q:v 2 out.jpg