Recherche avancée

Médias (0)

Mot : - Tags -/diogene

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (20)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (5104)

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