Recherche avancée

Médias (0)

Mot : - Tags -/optimisation

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

Autres articles (109)

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

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

  • FFMpeg slide text from right to left an leave from left to right after x seconds

    13 août 2018, par Marco van 't Klooster

    I’m trying to slide a text inside my video from right to left and leaving the video after 13 seconds.
    The text has to stay there for 13 seconds and the leave in the opposite direction the video.

    Right now I’m using the following command :
    ffmpeg -i Pool\ scores.m4v -vf "[in]drawtext=fontfile=/usr/share/fonts/truetype/msttcorefonts/Arial.ttf:fontsize=40:fontcolor=white:x=900:y=570:text='Marco':enable='between(t,11,24)' [out]" -c:v libx264 scrolling.m4v

    So the text Marco have to be at x=900 and y=570. Thats also the coordinate where the text have to leave from.

    The idea is to create a pool score board where the video is auto generated with dynamic text. In this image there is an example of what the animation have to look like. I’ve to retime it tom match the same speed.
    See example

    Thanks in advance !!

  • avcodec/qtrleenc : Check that width is a multiple of 4 for grayscale

    11 juin 2014, par Michael Niedermayer
    avcodec/qtrleenc : Check that width is a multiple of 4 for grayscale
    

    grayscale is coded as 4 pixels at a time, the encoder lacks support
    for the case where width%4 != 0, and will simply encode less data
    leaving random data after decoding at the right side

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

    • [DH] libavcodec/qtrleenc.c
  • avformat/matroskaenc : Clean up mkv_write_stereo_mode()

    7 mai 2020, par Andreas Rheinhardt
    avformat/matroskaenc : Clean up mkv_write_stereo_mode()
    

    Mostly reindentation after the last commit. Also remove a variable that
    is always zero ; move another variable to a more local scope and don't
    assign a value to a local variable immediately before leaving the function.

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

    • [DH] libavformat/matroskaenc.c