Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (92)

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

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

Sur d’autres sites (6128)

  • I'm installing paraview from source. I don't have a previous installation but I get a CMake error

    4 novembre 2014, par MadHatter

    CMake Error : The following variables are used in this project, but they are set
    to NOTFOUND.
    Please set them or make sure they are set and tested correctly in the CMake
    files :
    /home/uma/projects/ParaView/VTK/IO/FFMPEG/FFMPEG_INCLUDE_DIR
    used as include directory in directory
    /home/uma/projects/ParaView/VTK/IO/FFMPEG
    FFMPEG_avcodec_LIBRARY (ADVANCED)
    linked by target "vtkIOFFMPEG" in directory
    /home/uma/projects/ParaView/VTK/IO/FFMPEG
    FFMPEG_avformat_LIBRARY (ADVANCED)
    linked by target "vtkIOFFMPEG" in directory
    /home/uma/projects/ParaView/VTK/IO/FFMPEG
    FFMPEG_avutil_LIBRARY (ADVANCED)
    linked by target "vtkIOFFMPEG" in directory
    /home/uma/projects/ParaView/VTK/IO/FFMPEG
    FFMPEG_swscale_LIBRARY (ADVANCED)
    linked by target "vtkIOFFMPEG" in directory
    /home/uma/projects/ParaView/VTK/IO/FFMPEG

    I have all the required libraries installed. I followed http://www.paraview.org/Wiki/ParaView:Build_And_Install instructions for installing paraview. ccmake $HOME/projects/ParaView4 from ParaView-bin gave me the error. Any help is appreciated !

  • ffmpeg looping short videos inside collage of video

    16 avril 2018, par Yogesh Kale

    See reference link :-
    https://trac.ffmpeg.org/wiki/Create%20a%20mosaic%20out%20of%20several%20input%20videos
    i am making video collage using ffmpeg. i am able to make a collage of videos.So my question is : looping short videos inside collage of video.
    currently short video gets finished and remains as it is till large length video ends.i want looping short video till large video ends
    i am using overlay of ffmpeg for making collage

  • Using ffmpeg to increase framerate without changing duration [closed]

    11 février 2024, par sarunw

    I want to increase the video frame rate with FFmpeg.

    


    I found from this website, https://trac.ffmpeg.org/wiki/ChangingFrameRate, that I can use -r or fps filter.

    


    The doc said the output duration of the video would stay the same, but that is not the case in my test.

    


    What I tried so far.

    


    I got a video with a duration of 19 seconds at 1.45 fps (I took this number from the QuickTime app)

    


    After using these commands, fps become 30, but the duration becomes 1 second.

    


    ffmpeg -i <input /> -filter:v fps=fps=30 <output>&#xA;ffmpeg -i <input /> -filter:v fps=30 <output>&#xA;ffmpeg -y -r 30 -i <input /> <output>&#xA;</output></output></output>

    &#xA;

    Here is the file https://www.dropbox.com/scl/fi/nl6yabgl9yzikx12mkvnu/sample2.mp4?rlkey=wk4fsu2vvkcui31cneq8vruik&e=1&dl=0

    &#xA;