Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (104)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    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 (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

Sur d’autres sites (10491)

  • swscale/output : fix bilinear yuv2rgb chroma interpolation

    17 décembre 2024, par Niklas Haas
    swscale/output : fix bilinear yuv2rgb chroma interpolation
    

    These functions were divided into two special cases ; one assuming that
    uvalpha == 0, and the other assuming that uvalpha == 2048. This worked fine
    for simple 2x chroma upscaling but broke for e.g. yuv410p, non-centered chroma,
    or other special cases that involved non-aligned chroma filters.

    Fix it by instead dividing this check into two cases, a uvalpha==0 fast path
    and a uvalpha>0 general path. Instead of (A+B)/2 the general path now multiplies
    in the true uvalpha weight.

    I tried preserving the old fast path for the case of uvalpha == 2048, but this
    was significantly slower in practise versus having just one general path.
    However, we still need a uvalpha == 0 path for the unscaled case.

    Fixes : ticket #5083
    Signed-off-by : Niklas Haas <git@haasn.dev>
    Sponsored-by : Sovereign Tech Fund

    • [DH] libswscale/output.c
  • avisynth : Fix a "AVISynth" vs. "AviSynth" struct name typo

    29 juillet 2013, par Diego Biurrun
    avisynth : Fix a "AVISynth" vs. "AviSynth" struct name typo
    

    Also fix some similar typos in comments and documentation.

    • [DBH] doc/general.texi
    • [DBH] libavfilter/vf_gradfun.c
    • [DBH] libavformat/avisynth.c
  • Calling ffmpeg from php

    7 juillet 2013, par v3ga

    I need to run ffmpeg from a php script. The ffmpeg wiki page on the same topic (http://ffmpeg.org/trac/ffmpeg/wiki/Using%20FFmpeg%20from%20PHP%20scripts) suggests using shell_exec over ffmpeg-php. Some other pages suggests using ffmpeg-php. Which method is better ? Is ffmpeg-php compatible with latest versions of php ? My only purpose is to convert any videos hosted by the user into mp4 (h.264,aac).