Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (20)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (3855)

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