Recherche avancée

Médias (0)

Mot : - Tags -/utilisateurs

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

Autres articles (58)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (13527)

  • FFMPEG GIF without loop, without transparency

    4 janvier 2019, par Wallie

    I use the following bash file in Terminal to transcode video files to high quality gifs.

    #!/bin/sh

    palette="/tmp/palette.png"

    filters="fps=25,scale=576:-1.78:flags=lanczos"

    ffmpeg -v warning -i $1 -vf "$filters,palettegen" -y $palette
    ffmpeg -v warning -i $1 -i $palette -lavfi "$filters [x]; [x][1:v]
    paletteuse" -y $2

    Right now a 6 second video ends up as a 10 second gif. Which is a bit odd since the framerate matches. I guess it’s due to looping.

    Is it possible to add a simple filter that prevents looping.

    And also a filter that prevents transparency ?

    Source is a prores422 file.

  • How to use FFprobe on Pycharm ? [closed]

    27 novembre 2023, par someoneontheglobe

    Sort of a segue from my other question, is it possible to use ffprobe on Pycharm ? I thought I had it imported in, and even so, I have the exe file in my PATH variables, but I keep getting errors.

    


    I'm using aeneas for forced audio alignment, and I'm running the command : python -m aeneas.tools.execute_task --example-json into the Pycharm terminal (taken from here), but I would continue to get the error of [ERRO] Unable to call ffprobe executable. Is there any other way to do it ?

    


  • ffmpeg on Mamp wrong path

    24 août 2012, par user1595349

    I am having some problems with running ffmpeg on a MAMP environment an a Mac. I was able to install ffmpeg with homebrew and i can use it in the terminal with no problems.

    However I am not able to call ffmpeg with MAMP via php exec.

    I'm using this script :

    <?php
    exec('ffmpeg -i test.mp3 test.wav');
    ?>

    I think something might be wrong with the path ? Do I need to install ffmpeg in the MAMP folder ? At the moment it is installed in my "usr/Users/Username/local/bin" folder...?

    Thank you for your help !