Recherche avancée

Médias (91)

Autres articles (103)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • La gestion des forums

    3 novembre 2011, par

    Si les forums sont activés sur le site, les administrateurs ont la possibilité de les gérer depuis l’interface d’administration ou depuis l’article même dans le bloc de modification de l’article qui se trouve dans la navigation de la page.
    Accès à l’interface de modération des messages
    Lorsqu’il est identifié sur le site, l’administrateur peut procéder de deux manières pour gérer les forums.
    S’il souhaite modifier (modérer, déclarer comme SPAM un message) les forums d’un article particulier, il a à sa (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (9036)

  • Concat with short inpoint and outpoint differences leads to long still image in the final video

    11 mai 2017, par P. Dee

    I create a list.txt with inpoint and outpoint markers, that are sometimes close - down to 0.5s in difference with GoPro MP4-files.

    Then I use -y -f concat -safe 0 -i list.txt -c:v libx264 -c:a aac -af aresample=async=1 -pix_fmt yuv420p "filename.mp4".

    What happens is that the smaller the differences between inpoint and outpoint are, the longer a still image of the first video image is shown. Recently I had a 60 seconds long video and 30 seconds of it at the beginning were just the same image.

    How do I need to change my command ?

  • aacenc : Add support for Perceptual Noise Substitution energy values

    12 avril 2015, par Rostislav Pehlivanov
    aacenc : Add support for Perceptual Noise Substitution energy values
    

    This commit implements support for writing the noise energy values used in PNS.
    The difference between regular scalefactors and noise energy values is that the latter
    require a small preamble (NOISE_PRE + energy_value_diff) to be written as the first
    noise-containing band. Any following noise energy values use the previous one to
    base their "diff" on. Ordinary scalefactors remain unchanged other than that they ignore the noise values.

    This commit should not change anything by itself, the following commits will bring it in use.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/aac.h
    • [DH] libavcodec/aacenc.c
  • avcodec/pixlet : fix architecture-dependent code and values

    7 mars 2017, par Vittorio Giovara
    avcodec/pixlet : fix architecture-dependent code and values
    

    The constants used in the decoder used floating point precision,
    and this caused different values to be generated on different
    architectures.

    So, eradicate floating point numbers and use fixed point (32.32)
    arithmetics everywhere, replacing constants with precomputed integer
    values.

    Signed-off-by : Vittorio Giovara <vittorio.giovara at gmail.com>
    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] libavcodec/pixlet.c