Recherche avancée

Médias (91)

Autres articles (54)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

Sur d’autres sites (7613)

  • Overlay images on video in android

    31 août 2016, par Basit Ali

    I have to overlay images on video on different positions and on different times.
    Currently I am using ffmpeg but it is overhead of doing this frame by frame.
    Also ffmpeg is very complex and takes very much time to process the task.
    Alternatively iOS have avfoundation which is very better and fast. Do we have anything like this in android ?

  • Steps of using ffmpeg in visual studio 2019 ? [closed]

    15 avril 2020, par taimoor1990

    I have to use ffmpeg libraries which I am new to. Currently I am trying to build a basic hello world application that uses ffmpeg. I have googled multiple times there are some answers, saying something like static include these libraries and such comments which I am not sure how. I am looking for a step by step guide to link ffmpeg with a basic hello world app.

    


  • In mp4/h264, why does duplicate a frame need intensive re-encoding with ffmpeg ?

    17 avril 2024, par kwjsksai

    What I want to achieve is to duplicate all frames in 30fps.mp4 and result in a 60 fps video.
    
I tried ffmpeg -i 30fps.mp4 -filter:v fps=60 out.mp4. It does what I want but with re-encoding.
    
And the question is can it be done without re-encoding but only remux ?
    
The reason I'm asking is because intuitively speaking, we usually do shallow copy when same data is used multiple times.
    
So can it be done ? Does the codec/container even allow it ?