Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (90)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

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

Sur d’autres sites (8637)

  • ffmpeg : input rate and output rate not respected

    2 novembre 2022, par Gregory

    I am using ffmpeg to overlay PNG and gifs while trying to preserve the same framerate and delay of the GIFs. The gif files all have the same number of frames (5) and a 13ms delay between each frame.

    


    Attempt #1 :

    


    ffmpeg 
   -r 5 -i ./Salmonbg.png 
   -r 5 -i ./Pinkfur.gif 
   -r 5 -i ./Cap.gif 
   -r 5 -i ./Glasses.gif 
   -r 5 -i Bone.gif 
   -filter_complex "[0:v][1:v]overlay=format=auto[v1];[v1][2:v]overlay=format=auto[v2];[v2][3:v]overlay=format=auto[v3];[v3][4:v]overlay=format=auto[v4];[v4]split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" 
   -r 1000/130 preview.gif


    


    The command above will generate with the correct frame alignment from the png + gifs, however output frame delay incorrect :

    


    Frame #1: 260 <- WRONG (Why???)
Frame #2: 130
Frame #3: 260 <- WRONG (Why???)
Frame #4: 130
Frame #5: 130


    


    Attempt #2 :

    


    ffmpeg 
   -i ./Salmonbg.png 
   -i ./Pinkfur.gif 
   -i ./Cap.gif 
   -i ./Glasses.gif 
   -i Bone.gif 
   -filter_complex "[0:v][1:v]overlay=format=auto[v1];[v1][2:v]overlay=format=auto[v2];[v2][3:v]overlay=format=auto[v3];[v3][4:v]overlay=format=auto[v4];[v4]split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" 
   -r 1000/130 preview.gif


    


    The command above will output the correct frame delay, 13ms for all of them. However, the output gif will not use the first frame of each GIF. The second frame is used twice basically.

    


    Any idea what I am missing ? I feel like i'm 90% there but i can't figure out what i'm doing incorrectly.

    


  • MAINTAINERS : add myself as amfenc* maintainer

    4 novembre 2022, par Dmitrii Ovchinnikov
    MAINTAINERS : add myself as amfenc* maintainer
    

    Due to the lack of an active AMF maintainer at the moment, as well
    as plans to add the av1 encoder and other improvements of AMF,
    I added myself to the maintainers. Timely review and merging
    patches targeting AMF integration should improve support
    of AMD GPUs and APUs in FFmpeg.
    For the last couple of years I have been working on AMF related
    patches to ffmpeg and other open source projects.

    • [DH] MAINTAINERS
  • doc/developer.texi : refine the "contributing code" section

    9 novembre 2022, par Anton Khirnov
    doc/developer.texi : refine the "contributing code" section
    

    Drop the reference to directly committing code, because
    - it is highly discouraged and very rarely done these days
    - there is no good reason NOT to submit patches for review

    Add a link to the development policy chapter.

    • [DH] doc/developer.texi