Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (83)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

Sur d’autres sites (11930)

  • ffmpeg to convert all .jpg to mp4

    19 janvier 2024, par Alex Giunta

    I have a folder that has about 10,000 separate jpegs in it, and I want to take all of these and convert them into one single mp4 video. When I do

    



    ffmpeg -r 1 -pattern_type glob -i '/media/e/serv01/Dorgem/camera_history/$f_date/*.jpg' -c:v libx264 /media/e/serv01/Dorgem/camera_history/$f_date/$f_date.mp4


    



    from terminal it works fine, but once I put this into a bash script I get an error that it can't find *.jpg

    


  • ffmpeg to convert all .jpg to mp4

    16 décembre 2013, par Alex Giunta

    I have a folder that has about 10,000 separate jpegs in it, and I want to take all of these and convert them into one single mp4 video. When I do

    ffmpeg -r 1 -pattern_type glob -i '/media/e/serv01/Dorgem/camera_history/$f_date/*.jpg' -c:v libx264 /media/e/serv01/Dorgem/camera_history/$f_date/$f_date.mp4

    from terminal it works fine, but once I put this into a bash script I get an error that it can't find *.jpg

  • How can I change the fps of video without restarting the video stream, which is being played by ffmpeg command ?

    7 juin 2018, par Mehta Naisargi Rajeshbhai

    I am playing the video (.mp4) in VLC by this below command in terminal :

    ffmpeg -i input_file.mp4 -crf 18 -c:a copy -r 60 http://localhost:1234/feed1.ffm

    Currently it is 60 fps.

    Now I want to change the fps during the playback of video file, so is it possible to change the fps during runtime without restarting/breaking the video using FFmpeg ? And if it is possible then please guide me.