Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (88)

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

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (8440)

  • Combining zoompan slideshow with watermark overlay in FFMPEG

    2 avril 2020, par ricky_bobby43

    I've created a slideshow from a series of images with this

    



    ffmpeg -i img%d.jpg -vf zoompan=d=(7+1)/1:s=6144x3072:fps=1,framerate=25:interp_start=0:interp_end=255:scene=100 -c:v mpeg4 -q:v 2 out.mp4


    



    I have a semi-transparent watermark (inx.png) that I am applying for the first 3 seconds, but currenly using a separate command in FFMPEG :

    



    ffmpeg -i 6144out.mp4 -loop 1 -i inx.png -filter_complex "[1:v]format=argb,geq=r='r(X,Y)':a='0.5*alpha(X,Y)'[foo]; [foo]fade=out:st=3:d=1:alpha=1[bar], [0:v][bar]overlay" -vcodec libx264 output2.mp4


    



    Is there a way to combine the two ?

    


  • mlp_parser : Drop in-parser downmix functionality

    26 avril 2017, par Vittorio Giovara
    mlp_parser : Drop in-parser downmix functionality
    

    request_channel_layout is a decoder option and it makes no sense
    to have it in a parser.

    This feature was needed in the past when the decoder was allowed
    to reuse the avctx from the demuxer. Nowadays the decoder receives
    only the parameters from it, already containing the real channel
    layout (and the correct request_channel_layout option).

    After initialization the decoder overwrites the channel layout
    with the downmixed one that is actually output, so there is no need
    to preserve this functionality in the parser.

    Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>

    • [DBH] libavcodec/mlp_parser.c
    • [DBH] libavcodec/mlp_parser.h
    • [DBH] libavcodec/mlpdec.c
  • How to handle FFMPEG module missing probe inside docker ?

    2 avril 2021, par DarkFantasy

    I am AWARE of how to solve this problem of missing problem module with spleeter on WINDOWS. Here is the solution&#xA;https://github.com/deezer/spleeter/issues/101

    &#xA;

    How can I achieve the same inside my docker container ? In my docker file, the FFMPEG is being installed but it is missing the probe module. This is a common problem but one that I don't know how to solve inside of Docker.

    &#xA;

    I tried doing

    &#xA;

    RUN apt-get install -y ffmpeg&#xA;RUN pip uninstall ffmpeg-python&#xA;RUN pip install -r requirements.txt&#xA;

    &#xA;

    in my docker file but didn't work. The thing is, it was all working until last night. Today morning, I am getting this error when I rebuilt my docker image. Any help is appreciated.

    &#xA;