Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (59)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

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

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

Sur d’autres sites (11856)

  • How to make ffmpeg use GPU in python code ?

    11 mars 2023, par Alex

    I have code like this

    


    import ffmpeg

input_video = ffmpeg.input('video.mp4')

input_audio = ffmpeg.input('audio.mp3')

ffmpeg.concat(input_video, input_audio, v=1, a=1).output('D:/video.mp4').run()


    


    I found commands for terminal but didn't figure out how to make ffmpeg use GPU in Python code. Where and how do I pass the parameters '-hwaccel cuvid' ?
I using ffmpeg-python 0.2.0 from PyPI(pypi.org/project/ffmpeg-python)
I will be very grateful for your help

    


  • Revision 69dc876b4e : Set uv_crop_height/width in all the places When configuring the buffer make sur

    15 août 2014, par Johann

    Changed Paths :
     Modify /vp8/vp8_cx_iface.c


     Modify /vp8/vp8_dx_iface.c



    Set uv_crop_height/width in all the places

    When configuring the buffer make sure to set all the (now) required
    fields. Use the canonical variables and match the style from vpx_scale.

    https://code.google.com/p/webm/issues/detail?id=841

    Change-Id : I71b43d4a03756b8b2d6d60fdf8d7bf41b8041787

  • Make FFmpeg output GIF background transparent

    2 juin 2019, par Sahaj Rana

    I’m using FFmpeg library to save a gif like below :

    String commanda="-y -i "+file.getAbsolutePath()**tmp.gif** +" -loop 0 -y "+getEmptyFile("tmp_ch.gif");
    executeCmd(command);

    to make loop indefinitely for further process in an overlay for a video.

    The problem is : when I save the gif which previously had transparency is gone after saving it through FFmpeg command.

    So, how to bring transparency in output gif.
    I have tried

    --> -filter_complex [0]palettegen=reserve_transparent=on[p];[0][p]paletteuse

    --> -gifflags +transdiff

    but none of the solutions is working. It would be really helpful if it could be resolved, thanks !